Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceByResource

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 price by resource type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1PriceByResource

Returns a new instance of GoogleCloudChannelV1PriceByResource.



2081
2082
2083
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2081

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

Instance Attribute Details

#priceGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Price

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



2069
2070
2071
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2069

def price
  @price
end

#price_phasesArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1PricePhase>

Specifies the price by time range. Corresponds to the JSON property pricePhases



2074
2075
2076
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2074

def price_phases
  @price_phases
end

#resource_typeString

Resource Type. Example: SEAT Corresponds to the JSON property resourceType

Returns:

  • (String)


2079
2080
2081
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2079

def resource_type
  @resource_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2086
2087
2088
2089
2090
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2086

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