Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase

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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1PricePhase

Returns a new instance of GoogleCloudChannelV1PricePhase.



1705
1706
1707
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1705

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

Instance Attribute Details

#first_periodFixnum

Defines first period for the phase. Corresponds to the JSON property firstPeriod

Returns:

  • (Fixnum)


1683
1684
1685
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1683

def first_period
  @first_period
end

#last_periodFixnum

Defines first period for the phase. Corresponds to the JSON property lastPeriod

Returns:

  • (Fixnum)


1688
1689
1690
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1688

def last_period
  @last_period
end

#period_typeString

Defines the phase period type. Corresponds to the JSON property periodType

Returns:

  • (String)


1693
1694
1695
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1693

def period_type
  @period_type
end

#priceGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Price

Represents the price of the Offer. Corresponds to the JSON property price



1698
1699
1700
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1698

def price
  @price
end

#price_tiersArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier>

Price by the resource tiers. Corresponds to the JSON property priceTiers



1703
1704
1705
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1703

def price_tiers
  @price_tiers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1710
1711
1712
1713
1714
1715
1716
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1710

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