Class: Google::Apis::ContentV2::InvoiceSummaryAdditionalChargeSummary

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InvoiceSummaryAdditionalChargeSummary

Returns a new instance of InvoiceSummaryAdditionalChargeSummary.



3370
3371
3372
# File 'generated/google/apis/content_v2/classes.rb', line 3370

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

Instance Attribute Details

#total_amountGoogle::Apis::ContentV2::Amount

[required] Total additional charge for this type. Corresponds to the JSON property totalAmount



3362
3363
3364
# File 'generated/google/apis/content_v2/classes.rb', line 3362

def total_amount
  @total_amount
end

#typeString

[required] Type of the additional charge. Acceptable values are: - "shipping"

Corresponds to the JSON property type

Returns:

  • (String)


3368
3369
3370
# File 'generated/google/apis/content_v2/classes.rb', line 3368

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3375
3376
3377
3378
# File 'generated/google/apis/content_v2/classes.rb', line 3375

def update!(**args)
  @total_amount = args[:total_amount] if args.key?(:total_amount)
  @type = args[:type] if args.key?(:type)
end