Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1PriceTier

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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1PriceTier

Returns a new instance of GoogleCloudChannelV1PriceTier.



2196
2197
2198
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2196

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

Instance Attribute Details

#first_resourceFixnum

First resource for which the tier price applies. Corresponds to the JSON property firstResource

Returns:

  • (Fixnum)


2184
2185
2186
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2184

def first_resource
  @first_resource
end

#last_resourceFixnum

Last resource for which the tier price applies. Corresponds to the JSON property lastResource

Returns:

  • (Fixnum)


2189
2190
2191
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2189

def last_resource
  @last_resource
end

#priceGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1Price

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



2194
2195
2196
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2194

def price
  @price
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2201
2202
2203
2204
2205
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2201

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