Class: Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItems
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrdersCustomBatchRequestEntryShipLineItems
- 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_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.
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
4369 4370 4371 |
# File 'generated/google/apis/content_v2/classes.rb', line 4369 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
4346 4347 4348 |
# File 'generated/google/apis/content_v2/classes.rb', line 4346 def carrier @carrier end |
#line_items ⇒ Array<Google::Apis::ContentV2::OrderShipmentLineItemShipment>
Line items to ship.
Corresponds to the JSON property lineItems
4351 4352 4353 |
# File 'generated/google/apis/content_v2/classes.rb', line 4351 def line_items @line_items end |
#shipment_id ⇒ String
Deprecated. Please use shipmentInfo instead. The ID of the shipment.
Corresponds to the JSON property shipmentId
4356 4357 4358 |
# File 'generated/google/apis/content_v2/classes.rb', line 4356 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
4362 4363 4364 |
# File 'generated/google/apis/content_v2/classes.rb', line 4362 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
4367 4368 4369 |
# File 'generated/google/apis/content_v2/classes.rb', line 4367 def tracking_id @tracking_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4374 4375 4376 4377 4378 4379 4380 |
# File 'generated/google/apis/content_v2/classes.rb', line 4374 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) @shipment_infos = args[:shipment_infos] if args.key?(:shipment_infos) @tracking_id = args[:tracking_id] if args.key?(:tracking_id) end |