Class: Google::Apis::ContentV2sandbox::OrdersCustomBatchRequestEntryShipLineItems
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2sandbox::OrdersCustomBatchRequestEntryShipLineItems
- Defined in:
- generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/representations.rb
Instance Attribute Summary collapse
-
#carrier ⇒ String
The carrier handling the shipment.
-
#line_items ⇒ Array<Google::Apis::ContentV2sandbox::OrderShipmentLineItemShipment>
Line items to ship.
-
#shipment_id ⇒ String
The ID of the shipment.
-
#tracking_id ⇒ String
The tracking id for the shipment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryShipLineItems
constructor
A new instance of OrdersCustomBatchRequestEntryShipLineItems.
-
#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) ⇒ OrdersCustomBatchRequestEntryShipLineItems
Returns a new instance of OrdersCustomBatchRequestEntryShipLineItems
1571 1572 1573 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#carrier ⇒ String
The carrier handling the shipment.
Corresponds to the JSON property carrier
1554 1555 1556 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1554 def carrier @carrier end |
#line_items ⇒ Array<Google::Apis::ContentV2sandbox::OrderShipmentLineItemShipment>
Line items to ship.
Corresponds to the JSON property lineItems
1559 1560 1561 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1559 def line_items @line_items end |
#shipment_id ⇒ String
The ID of the shipment.
Corresponds to the JSON property shipmentId
1564 1565 1566 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1564 def shipment_id @shipment_id end |
#tracking_id ⇒ String
The tracking id for the shipment.
Corresponds to the JSON property trackingId
1569 1570 1571 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1569 def tracking_id @tracking_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1576 1577 1578 1579 1580 1581 |
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1576 def update!(**args) @carrier = args[:carrier] if args.key?(:carrier) @line_items = args[:line_items] if args.key?(:line_items) @shipment_id = args[:shipment_id] if args.key?(:shipment_id) @tracking_id = args[:tracking_id] if args.key?(:tracking_id) end |