Show / Hide Table of Contents

Class OrderShipment

Inheritance
System.Object
OrderShipment
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class OrderShipment : IDirectResponseSchema

Properties

Carrier

The carrier handling the shipment. For supported carriers, Google includes the carrier name and tracking URL in emails to customers. For select supported carriers, Google also automatically updates the shipment status based on the provided shipment ID. Note: You can also use unsupported carriers, but emails to customers will not include the carrier name or tracking URL, and there will be no automatic order status updates. Supported carriers for US are: - "ups" (United Parcel Service) automatic status updates - "usps" (United States Postal Service) automatic status updates - "fedex" (FedEx) automatic status updates * - "dhl" (DHL eCommerce) *automatic status updates (US only) - "ontrac" (OnTrac) *automatic status updates

    • "dhl express" (DHL Express) - "deliv" (Deliv) - "dynamex" (TForce) - "lasership" (LaserShip) - "mpx" (Military Parcel Xpress) - "uds" (United Delivery Service) - "efw" (Estes Forwarding Worldwide)
  • "jd logistics" (JD Logistics) - "yunexpress" (YunExpress) - "china post" (China Post) - "china ems" (China Post Express Mail Service) - "singapore post" (Singapore Post) - "pos malaysia" (Pos Malaysia) - "postnl" (PostNL) - "ptt" (PTT Turkish Post) - "eub" (ePacket) - "chukou1" (Chukou1 Logistics) - "bestex" (Best Express) - "canada post" (Canada Post) - "purolator" (Purolator) - "canpar" (Canpar) - "india post" (India Post) - "blue dart" (Blue Dart) - "delhivery" (Delhivery) - "dtdc" (DTDC) - "tpc india" (TPC India) Supported carriers for FR are: - "la poste" (La Poste) automatic status updates * - "colissimo" (Colissimo by La Poste) *automatic status updates - "ups" (United Parcel Service) *automatic status updates * - "chronopost" (Chronopost by La Poste) - "gls" (General Logistics Systems France) - "dpd" (DPD Group by GeoPost) - "bpost" (Belgian Post Group) - "colis prive" (Colis Privé) - "boxtal" (Boxtal) - "geodis" (GEODIS) - "tnt" (TNT) - "db schenker" (DB Schenker) - "aramex" (Aramex)
Declaration
[JsonProperty("carrier")]
public virtual string Carrier { get; set; }
Property Value
Type Description
System.String

CreationDate

Date on which the shipment has been created, in ISO 8601 format.

Declaration
[JsonProperty("creationDate")]
public virtual string CreationDate { get; set; }
Property Value
Type Description
System.String

DeliveryDate

Date on which the shipment has been delivered, in ISO 8601 format. Present only if status is delivered

Declaration
[JsonProperty("deliveryDate")]
public virtual string DeliveryDate { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

The ID of the shipment.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

LineItems

The line items that are shipped.

Declaration
[JsonProperty("lineItems")]
public virtual IList<OrderShipmentLineItemShipment> LineItems { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<OrderShipmentLineItemShipment>

ScheduledDeliveryDetails

Delivery details of the shipment if scheduling is needed.

Declaration
[JsonProperty("scheduledDeliveryDetails")]
public virtual OrderShipmentScheduledDeliveryDetails ScheduledDeliveryDetails { get; set; }
Property Value
Type Description
OrderShipmentScheduledDeliveryDetails

Status

The status of the shipment. Acceptable values are: - "delivered" - "readyForPickup" - "shipped" - "undeliverable"

Declaration
[JsonProperty("status")]
public virtual string Status { get; set; }
Property Value
Type Description
System.String

TrackingId

The tracking ID for the shipment.

Declaration
[JsonProperty("trackingId")]
public virtual string TrackingId { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top