Class: Google::Apis::ContentV2_1::ShipmentInvoiceLineItemInvoice

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShipmentInvoiceLineItemInvoice

Returns a new instance of ShipmentInvoiceLineItemInvoice.



12649
12650
12651
# File 'generated/google/apis/content_v2_1/classes.rb', line 12649

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

Instance Attribute Details

#line_item_idString

ID of the line item. Either lineItemId or productId must be set. Corresponds to the JSON property lineItemId

Returns:

  • (String)


12628
12629
12630
# File 'generated/google/apis/content_v2_1/classes.rb', line 12628

def line_item_id
  @line_item_id
end

#product_idString

ID of the product. This is the REST ID used in the products service. Either lineItemId or productId must be set. Corresponds to the JSON property productId

Returns:

  • (String)


12634
12635
12636
# File 'generated/google/apis/content_v2_1/classes.rb', line 12634

def product_id
  @product_id
end

#shipment_unit_idsArray<String>

[required] The shipment unit ID is assigned by the merchant and defines individual quantities within a line item. The same ID can be assigned to units that are the same while units that differ must be assigned a different ID (for example: free or promotional units). Corresponds to the JSON property shipmentUnitIds

Returns:

  • (Array<String>)


12642
12643
12644
# File 'generated/google/apis/content_v2_1/classes.rb', line 12642

def shipment_unit_ids
  @shipment_unit_ids
end

#unit_invoiceGoogle::Apis::ContentV2_1::UnitInvoice

[required] Invoice details for a single unit. Corresponds to the JSON property unitInvoice



12647
12648
12649
# File 'generated/google/apis/content_v2_1/classes.rb', line 12647

def unit_invoice
  @unit_invoice
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12654
12655
12656
12657
12658
12659
# File 'generated/google/apis/content_v2_1/classes.rb', line 12654

def update!(**args)
  @line_item_id = args[:line_item_id] if args.key?(:line_item_id)
  @product_id = args[:product_id] if args.key?(:product_id)
  @shipment_unit_ids = args[:shipment_unit_ids] if args.key?(:shipment_unit_ids)
  @unit_invoice = args[:unit_invoice] if args.key?(:unit_invoice)
end