Class: Google::Apis::ContentV2_1::ShipmentInvoiceLineItemInvoice
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ShipmentInvoiceLineItemInvoice
- 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
-
#line_item_id ⇒ String
ID of the line item.
-
#product_id ⇒ String
ID of the product.
-
#shipment_unit_ids ⇒ Array<String>
[required] Unit IDs to define specific units within the line item.
-
#unit_invoice ⇒ Google::Apis::ContentV2_1::UnitInvoice
[required] Invoice details for a single unit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShipmentInvoiceLineItemInvoice
constructor
A new instance of ShipmentInvoiceLineItemInvoice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ShipmentInvoiceLineItemInvoice
Returns a new instance of ShipmentInvoiceLineItemInvoice
8193 8194 8195 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8193 def initialize(**args) update!(**args) end |
Instance Attribute Details
#line_item_id ⇒ String
ID of the line item. Either lineItemId or productId must be set.
Corresponds to the JSON property lineItemId
8175 8176 8177 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8175 def line_item_id @line_item_id end |
#product_id ⇒ String
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
8181 8182 8183 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8181 def product_id @product_id end |
#shipment_unit_ids ⇒ Array<String>
[required] Unit IDs to define specific units within the line item.
Corresponds to the JSON property shipmentUnitIds
8186 8187 8188 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8186 def shipment_unit_ids @shipment_unit_ids end |
#unit_invoice ⇒ Google::Apis::ContentV2_1::UnitInvoice
[required] Invoice details for a single unit.
Corresponds to the JSON property unitInvoice
8191 8192 8193 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8191 def unit_invoice @unit_invoice end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8198 8199 8200 8201 8202 8203 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8198 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 |