Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase
- 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
Specifies the price by the duration of months. For example, a 20% discount for the first six months, then a 10% discount starting on the seventh month.
Instance Attribute Summary collapse
-
#first_period ⇒ Fixnum
Defines first period for the phase.
-
#last_period ⇒ Fixnum
Defines first period for the phase.
-
#period_type ⇒ String
Defines the phase period type.
-
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
-
#price_tiers ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier>
Price by the resource tiers.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1PricePhase
constructor
A new instance of GoogleCloudChannelV1PricePhase.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1PricePhase
Returns a new instance of GoogleCloudChannelV1PricePhase.
1914 1915 1916 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#first_period ⇒ Fixnum
Defines first period for the phase.
Corresponds to the JSON property firstPeriod
1892 1893 1894 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1892 def first_period @first_period end |
#last_period ⇒ Fixnum
Defines first period for the phase.
Corresponds to the JSON property lastPeriod
1897 1898 1899 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1897 def last_period @last_period end |
#period_type ⇒ String
Defines the phase period type.
Corresponds to the JSON property periodType
1902 1903 1904 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1902 def period_type @period_type end |
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
Corresponds to the JSON property price
1907 1908 1909 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1907 def price @price end |
#price_tiers ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier>
Price by the resource tiers.
Corresponds to the JSON property priceTiers
1912 1913 1914 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1912 def price_tiers @price_tiers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1919 1920 1921 1922 1923 1924 1925 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1919 def update!(**args) @first_period = args[:first_period] if args.key?(:first_period) @last_period = args[:last_period] if args.key?(:last_period) @period_type = args[:period_type] if args.key?(:period_type) @price = args[:price] if args.key?(:price) @price_tiers = args[:price_tiers] if args.key?(:price_tiers) end |