Class: Google::Apis::ContentV2::OrderLineItemProductFee
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderLineItemProductFee
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ OrderLineItemProductFee
Returns a new instance of OrderLineItemProductFee.
4563 4564 4565 |
# File 'lib/google/apis/content_v2/classes.rb', line 4563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount ⇒ Google::Apis::ContentV2::Price
Amount of the fee.
Corresponds to the JSON property amount
4556 4557 4558 |
# File 'lib/google/apis/content_v2/classes.rb', line 4556 def amount @amount end |
#name ⇒ String
Name of the fee.
Corresponds to the JSON property name
4561 4562 4563 |
# File 'lib/google/apis/content_v2/classes.rb', line 4561 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4568 4569 4570 4571 |
# File 'lib/google/apis/content_v2/classes.rb', line 4568 def update!(**args) @amount = args[:amount] if args.key?(:amount) @name = args[:name] if args.key?(:name) end |