Class: Google::Apis::ContentV2sandbox::OrdersCustomBatchRequestEntryShipLineItems

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

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

#carrierString

The carrier handling the shipment. Corresponds to the JSON property carrier

Returns:

  • (String)


1554
1555
1556
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1554

def carrier
  @carrier
end

#line_itemsArray<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_idString

The ID of the shipment. Corresponds to the JSON property shipmentId

Returns:

  • (String)


1564
1565
1566
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 1564

def shipment_id
  @shipment_id
end

#tracking_idString

The tracking id for the shipment. Corresponds to the JSON property trackingId

Returns:

  • (String)


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