Class: Google::Apis::ContentV2::ShipmentInvoiceLineItemInvoice
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ShipmentInvoiceLineItemInvoice
- 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
-
#line_item_id ⇒ String
ID of the line item.
-
#product_id ⇒ String
ID of the product.
-
#shipment_unit_ids ⇒ Array<String>
[required] The shipment unit ID is assigned by the merchant and defines individual quantities within a line item.
-
#unit_invoice ⇒ Google::Apis::ContentV2::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.
Constructor Details
#initialize(**args) ⇒ ShipmentInvoiceLineItemInvoice
Returns a new instance of ShipmentInvoiceLineItemInvoice.
10255 10256 10257 |
# File 'lib/google/apis/content_v2/classes.rb', line 10255 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
10234 10235 10236 |
# File 'lib/google/apis/content_v2/classes.rb', line 10234 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
10240 10241 10242 |
# File 'lib/google/apis/content_v2/classes.rb', line 10240 def product_id @product_id end |
#shipment_unit_ids ⇒ Array<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
10248 10249 10250 |
# File 'lib/google/apis/content_v2/classes.rb', line 10248 def shipment_unit_ids @shipment_unit_ids end |
#unit_invoice ⇒ Google::Apis::ContentV2::UnitInvoice
[required] Invoice details for a single unit.
Corresponds to the JSON property unitInvoice
10253 10254 10255 |
# File 'lib/google/apis/content_v2/classes.rb', line 10253 def unit_invoice @unit_invoice end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10260 10261 10262 10263 10264 10265 |
# File 'lib/google/apis/content_v2/classes.rb', line 10260 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 |