Class: Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItems
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItems
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#carrier ⇒ String
Deprecated.
-
#line_items ⇒ Array<Google::Apis::ContentV2::OrderShipmentLineItemShipment>
Line items to ship.
-
#shipment_group_id ⇒ String
ID of the shipment group.
-
#shipment_id ⇒ String
Deprecated.
-
#shipment_infos ⇒ Array<Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo>
Shipment information.
-
#tracking_id ⇒ String
Deprecated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryShipLineItems
constructor
A new instance of OrdersCustomBatchRequestEntryShipLineItems.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryShipLineItems
Returns a new instance of OrdersCustomBatchRequestEntryShipLineItems.
6860 6861 6862 |
# File 'generated/google/apis/content_v2/classes.rb', line 6860 def initialize(**args) update!(**args) end |
Instance Attribute Details
#carrier ⇒ String
Deprecated. Please use shipmentInfo instead. The carrier handling the shipment.
See shipments[].carrier
in the Orders resource representation for a list of
acceptable values.
Corresponds to the JSON property carrier
6831 6832 6833 |
# File 'generated/google/apis/content_v2/classes.rb', line 6831 def carrier @carrier end |
#line_items ⇒ Array<Google::Apis::ContentV2::OrderShipmentLineItemShipment>
Line items to ship.
Corresponds to the JSON property lineItems
6836 6837 6838 |
# File 'generated/google/apis/content_v2/classes.rb', line 6836 def line_items @line_items end |
#shipment_group_id ⇒ String
ID of the shipment group. Required for orders that use the orderinvoices
service.
Corresponds to the JSON property shipmentGroupId
6842 6843 6844 |
# File 'generated/google/apis/content_v2/classes.rb', line 6842 def shipment_group_id @shipment_group_id end |
#shipment_id ⇒ String
Deprecated. Please use shipmentInfo instead. The ID of the shipment.
Corresponds to the JSON property shipmentId
6847 6848 6849 |
# File 'generated/google/apis/content_v2/classes.rb', line 6847 def shipment_id @shipment_id end |
#shipment_infos ⇒ Array<Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo>
Shipment information. This field is repeated because a single line item can be
shipped in several packages (and have several tracking IDs).
Corresponds to the JSON property shipmentInfos
6853 6854 6855 |
# File 'generated/google/apis/content_v2/classes.rb', line 6853 def shipment_infos @shipment_infos end |
#tracking_id ⇒ String
Deprecated. Please use shipmentInfo instead. The tracking ID for the shipment.
Corresponds to the JSON property trackingId
6858 6859 6860 |
# File 'generated/google/apis/content_v2/classes.rb', line 6858 def tracking_id @tracking_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6865 6866 6867 6868 6869 6870 6871 6872 |
# File 'generated/google/apis/content_v2/classes.rb', line 6865 def update!(**args) @carrier = args[:carrier] if args.key?(:carrier) @line_items = args[:line_items] if args.key?(:line_items) @shipment_group_id = args[:shipment_group_id] if args.key?(:shipment_group_id) @shipment_id = args[:shipment_id] if args.key?(:shipment_id) @shipment_infos = args[:shipment_infos] if args.key?(:shipment_infos) @tracking_id = args[:tracking_id] if args.key?(:tracking_id) end |