Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Offer

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb

Overview

Represents an offer made to resellers for purchase. An offer is associated with a Sku, has a plan for payment, a price, and defines the constraints for buying.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1Offer

Returns a new instance of GoogleCloudChannelV1Offer.



1476
1477
1478
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1476

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#constraintsGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Constraints

Represents the constraints for buying the Offer. Corresponds to the JSON property constraints



1431
1432
1433
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1431

def constraints
  @constraints
end

#end_timeString

Output only. End of the Offer validity time. Corresponds to the JSON property endTime

Returns:

  • (String)


1436
1437
1438
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1436

def end_time
  @end_time
end

#marketing_infoGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1MarketingInfo

Represents the marketing information for a Product, SKU or Offer. Corresponds to the JSON property marketingInfo



1441
1442
1443
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1441

def marketing_info
  @marketing_info
end

#nameString

Resource Name of the Offer. Format: accounts/account_id/offers/offer_id Corresponds to the JSON property name

Returns:

  • (String)


1446
1447
1448
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1446

def name
  @name
end

#parameter_definitionsArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1ParameterDefinition>

Parameters required to use current Offer to purchase. Corresponds to the JSON property parameterDefinitions



1451
1452
1453
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1451

def parameter_definitions
  @parameter_definitions
end

#planGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Plan

The payment plan for the Offer. Describes how to make a payment. Corresponds to the JSON property plan



1456
1457
1458
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1456

def plan
  @plan
end

#price_by_resourcesArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceByResource>

Price for each monetizable resource type. Corresponds to the JSON property priceByResources



1461
1462
1463
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1461

def price_by_resources
  @price_by_resources
end

#skuGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Sku

Represents a product's purchasable Stock Keeping Unit (SKU). SKUs represent the different variations of the product. For example, Google Workspace Business Standard and Google Workspace Business Plus are Google Workspace product SKUs. Corresponds to the JSON property sku



1469
1470
1471
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1469

def sku
  @sku
end

#start_timeString

Start of the Offer validity time. Corresponds to the JSON property startTime

Returns:

  • (String)


1474
1475
1476
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1474

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1481

def update!(**args)
  @constraints = args[:constraints] if args.key?(:constraints)
  @end_time = args[:end_time] if args.key?(:end_time)
  @marketing_info = args[:marketing_info] if args.key?(:marketing_info)
  @name = args[:name] if args.key?(:name)
  @parameter_definitions = args[:parameter_definitions] if args.key?(:parameter_definitions)
  @plan = args[:plan] if args.key?(:plan)
  @price_by_resources = args[:price_by_resources] if args.key?(:price_by_resources)
  @sku = args[:sku] if args.key?(:sku)
  @start_time = args[:start_time] if args.key?(:start_time)
end