Class: Google::Apis::ContentV2_1::OrderShipment

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/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) ⇒ OrderShipment

Returns a new instance of OrderShipment



4601
4602
4603
# File 'generated/google/apis/content_v2_1/classes.rb', line 4601

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#carrierString

The carrier handling the shipment. Acceptable values for US are:

  • "gsx"
  • "ups"
  • "usps"
  • "fedex"
  • "dhl"
  • "ecourier"
  • "cxt"
  • "google"
  • "ontrac"
  • "emsy"
  • "ont"
  • "deliv"
  • "dynamex"
  • "lasership"
  • "mpx"
  • "uds"
  • "efw" Acceptable values for FR are:
  • "colissimo"
  • "chronopost"
  • "gls"
  • "dpd"
  • "bpost"
  • "colis priv�"
  • "boxtal"
  • "geodis" Corresponds to the JSON property carrier

Returns:

  • (String)


4563
4564
4565
# File 'generated/google/apis/content_v2_1/classes.rb', line 4563

def carrier
  @carrier
end

#creation_dateString

Date on which the shipment has been created, in ISO 8601 format. Corresponds to the JSON property creationDate

Returns:

  • (String)


4568
4569
4570
# File 'generated/google/apis/content_v2_1/classes.rb', line 4568

def creation_date
  @creation_date
end

#delivery_dateString

Date on which the shipment has been delivered, in ISO 8601 format. Present only if status is delivered Corresponds to the JSON property deliveryDate

Returns:

  • (String)


4574
4575
4576
# File 'generated/google/apis/content_v2_1/classes.rb', line 4574

def delivery_date
  @delivery_date
end

#idString

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

Returns:

  • (String)


4579
4580
4581
# File 'generated/google/apis/content_v2_1/classes.rb', line 4579

def id
  @id
end

#line_itemsArray<Google::Apis::ContentV2_1::OrderShipmentLineItemShipment>

The line items that are shipped. Corresponds to the JSON property lineItems



4584
4585
4586
# File 'generated/google/apis/content_v2_1/classes.rb', line 4584

def line_items
  @line_items
end

#shipment_group_idString

The shipment group ID of the shipment. This is set in shiplineitems request. Corresponds to the JSON property shipmentGroupId

Returns:

  • (String)


4589
4590
4591
# File 'generated/google/apis/content_v2_1/classes.rb', line 4589

def shipment_group_id
  @shipment_group_id
end

#statusString

The status of the shipment. Corresponds to the JSON property status

Returns:

  • (String)


4594
4595
4596
# File 'generated/google/apis/content_v2_1/classes.rb', line 4594

def status
  @status
end

#tracking_idString

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

Returns:

  • (String)


4599
4600
4601
# File 'generated/google/apis/content_v2_1/classes.rb', line 4599

def tracking_id
  @tracking_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
# File 'generated/google/apis/content_v2_1/classes.rb', line 4606

def update!(**args)
  @carrier = args[:carrier] if args.key?(:carrier)
  @creation_date = args[:creation_date] if args.key?(:creation_date)
  @delivery_date = args[:delivery_date] if args.key?(:delivery_date)
  @id = args[:id] if args.key?(:id)
  @line_items = args[:line_items] if args.key?(:line_items)
  @shipment_group_id = args[:shipment_group_id] if args.key?(:shipment_group_id)
  @status = args[:status] if args.key?(:status)
  @tracking_id = args[:tracking_id] if args.key?(:tracking_id)
end