Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Price

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 the price of the Offer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1Price

Returns a new instance of GoogleCloudChannelV1Price.



1631
1632
1633
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1631

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

Instance Attribute Details

#base_priceGoogle::Apis::CloudchannelV1::GoogleTypeMoney

Represents an amount of money with its currency type. Corresponds to the JSON property basePrice



1613
1614
1615
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1613

def base_price
  @base_price
end

#discountFloat

Discount percentage, represented as decimal. For example, a 20% discount will be represent as 0.2. Corresponds to the JSON property discount

Returns:

  • (Float)


1619
1620
1621
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1619

def discount
  @discount
end

#effective_priceGoogle::Apis::CloudchannelV1::GoogleTypeMoney

Represents an amount of money with its currency type. Corresponds to the JSON property effectivePrice



1624
1625
1626
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1624

def effective_price
  @effective_price
end

#external_price_uriString

Link to external price list, such as link to Google Voice rate card. Corresponds to the JSON property externalPriceUri

Returns:

  • (String)


1629
1630
1631
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1629

def external_price_uri
  @external_price_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1636
1637
1638
1639
1640
1641
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1636

def update!(**args)
  @base_price = args[:base_price] if args.key?(:base_price)
  @discount = args[:discount] if args.key?(:discount)
  @effective_price = args[:effective_price] if args.key?(:effective_price)
  @external_price_uri = args[:external_price_uri] if args.key?(:external_price_uri)
end