Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier
- 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
Defines price at resource tier level. For example, an offer with following definition : * Tier 1: Provide 25% discount for all seats between 1 and 25. * Tier 2: Provide 10% discount for all seats between 26 and 100. * Tier 3: Provide flat 15% discount for all seats above 100. Each of these tiers is represented as a PriceTier.
Instance Attribute Summary collapse
-
#first_resource ⇒ Fixnum
First resource for which the tier price applies.
-
#last_resource ⇒ Fixnum
Last resource for which the tier price applies.
-
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1PriceTier
constructor
A new instance of GoogleCloudChannelV1PriceTier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1PriceTier
Returns a new instance of GoogleCloudChannelV1PriceTier.
2552 2553 2554 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#first_resource ⇒ Fixnum
First resource for which the tier price applies.
Corresponds to the JSON property firstResource
2540 2541 2542 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2540 def first_resource @first_resource end |
#last_resource ⇒ Fixnum
Last resource for which the tier price applies.
Corresponds to the JSON property lastResource
2545 2546 2547 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2545 def last_resource @last_resource end |
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
Corresponds to the JSON property price
2550 2551 2552 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2550 def price @price end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2557 2558 2559 2560 2561 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2557 def update!(**args) @first_resource = args[:first_resource] if args.key?(:first_resource) @last_resource = args[:last_resource] if args.key?(:last_resource) @price = args[:price] if args.key?(:price) end |