Class: Google::Apis::ContentV2::OrderinvoicesCreateChargeInvoiceRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderinvoicesCreateChargeInvoiceRequest
- 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
-
#invoice_id ⇒ String
[required] The ID of the invoice.
-
#invoice_summary ⇒ Google::Apis::ContentV2::InvoiceSummary
[required] Invoice summary.
-
#line_item_invoices ⇒ Array<Google::Apis::ContentV2::ShipmentInvoiceLineItemInvoice>
[required] Invoice details per line item.
-
#operation_id ⇒ String
[required] The ID of the operation, unique across all operations for a given order.
-
#shipment_group_id ⇒ String
[required] ID of the shipment group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderinvoicesCreateChargeInvoiceRequest
constructor
A new instance of OrderinvoicesCreateChargeInvoiceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrderinvoicesCreateChargeInvoiceRequest
Returns a new instance of OrderinvoicesCreateChargeInvoiceRequest.
5252 5253 5254 |
# File 'lib/google/apis/content_v2/classes.rb', line 5252 def initialize(**args) update!(**args) end |
Instance Attribute Details
#invoice_id ⇒ String
[required] The ID of the invoice.
Corresponds to the JSON property invoiceId
5227 5228 5229 |
# File 'lib/google/apis/content_v2/classes.rb', line 5227 def invoice_id @invoice_id end |
#invoice_summary ⇒ Google::Apis::ContentV2::InvoiceSummary
[required] Invoice summary.
Corresponds to the JSON property invoiceSummary
5232 5233 5234 |
# File 'lib/google/apis/content_v2/classes.rb', line 5232 def invoice_summary @invoice_summary end |
#line_item_invoices ⇒ Array<Google::Apis::ContentV2::ShipmentInvoiceLineItemInvoice>
[required] Invoice details per line item.
Corresponds to the JSON property lineItemInvoices
5237 5238 5239 |
# File 'lib/google/apis/content_v2/classes.rb', line 5237 def line_item_invoices @line_item_invoices end |
#operation_id ⇒ String
[required] The ID of the operation, unique across all operations for a given
order.
Corresponds to the JSON property operationId
5243 5244 5245 |
# File 'lib/google/apis/content_v2/classes.rb', line 5243 def operation_id @operation_id end |
#shipment_group_id ⇒ String
[required] ID of the shipment group. It is assigned by the merchant in the
shipLineItems
method and is used to group multiple line items that have the
same kind of shipping charges.
Corresponds to the JSON property shipmentGroupId
5250 5251 5252 |
# File 'lib/google/apis/content_v2/classes.rb', line 5250 def shipment_group_id @shipment_group_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5257 5258 5259 5260 5261 5262 5263 |
# File 'lib/google/apis/content_v2/classes.rb', line 5257 def update!(**args) @invoice_id = args[:invoice_id] if args.key?(:invoice_id) @invoice_summary = args[:invoice_summary] if args.key?(:invoice_summary) @line_item_invoices = args[:line_item_invoices] if args.key?(:line_item_invoices) @operation_id = args[:operation_id] if args.key?(:operation_id) @shipment_group_id = args[:shipment_group_id] if args.key?(:shipment_group_id) end |