Class: Google::Apis::ContentV2::OrderLineItemProductFee
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderLineItemProductFee
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#amount ⇒ Google::Apis::ContentV2::Price
Amount of the fee.
-
#name ⇒ String
Name of the fee.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderLineItemProductFee
constructor
A new instance of OrderLineItemProductFee.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderLineItemProductFee
Returns a new instance of OrderLineItemProductFee
4701 4702 4703 |
# File 'generated/google/apis/content_v2/classes.rb', line 4701 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount ⇒ Google::Apis::ContentV2::Price
Amount of the fee.
Corresponds to the JSON property amount
4694 4695 4696 |
# File 'generated/google/apis/content_v2/classes.rb', line 4694 def amount @amount end |
#name ⇒ String
Name of the fee.
Corresponds to the JSON property name
4699 4700 4701 |
# File 'generated/google/apis/content_v2/classes.rb', line 4699 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4706 4707 4708 4709 |
# File 'generated/google/apis/content_v2/classes.rb', line 4706 def update!(**args) @amount = args[:amount] if args.key?(:amount) @name = args[:name] if args.key?(:name) end |