Class: Google::Apis::ContentV2::OrderLineItemProductFee

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#amountGoogle::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

#nameString

Name of the fee. Corresponds to the JSON property name

Returns:

  • (String)


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