Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceByResource
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceByResource
- 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 price by resource type.
Instance Attribute Summary collapse
-
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
-
#price_phases ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase>
Specifies the price by time range.
-
#resource_type ⇒ String
Resource Type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1PriceByResource
constructor
A new instance of GoogleCloudChannelV1PriceByResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1PriceByResource
Returns a new instance of GoogleCloudChannelV1PriceByResource.
1662 1663 1664 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1662 def initialize(**args) update!(**args) end |
Instance Attribute Details
#price ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price
Represents the price of the Offer.
Corresponds to the JSON property price
1650 1651 1652 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1650 def price @price end |
#price_phases ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase>
Specifies the price by time range.
Corresponds to the JSON property pricePhases
1655 1656 1657 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1655 def price_phases @price_phases end |
#resource_type ⇒ String
Resource Type. Example: SEAT
Corresponds to the JSON property resourceType
1660 1661 1662 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1660 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1667 1668 1669 1670 1671 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1667 def update!(**args) @price = args[:price] if args.key?(:price) @price_phases = args[:price_phases] if args.key?(:price_phases) @resource_type = args[:resource_type] if args.key?(:resource_type) end |