Struct google_content2::api::OrderShipment [−][src]
pub struct OrderShipment {
pub carrier: Option<String>,
pub creation_date: Option<String>,
pub delivery_date: Option<String>,
pub id: Option<String>,
pub line_items: Option<Vec<OrderShipmentLineItemShipment>>,
pub scheduled_delivery_details: Option<OrderShipmentScheduledDeliveryDetails>,
pub status: Option<String>,
pub tracking_id: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
carrier: Option<String>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)
creation_date: Option<String>Date on which the shipment has been created, in ISO 8601 format.
delivery_date: Option<String>Date on which the shipment has been delivered, in ISO 8601 format. Present only if status is delivered
id: Option<String>The ID of the shipment.
line_items: Option<Vec<OrderShipmentLineItemShipment>>The line items that are shipped.
scheduled_delivery_details: Option<OrderShipmentScheduledDeliveryDetails>Delivery details of the shipment if scheduling is needed.
status: Option<String>The status of the shipment. Acceptable values are: - “delivered” - “readyForPickup” - “shipped” - “undeliverable”
tracking_id: Option<String>The tracking ID for the shipment.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for OrderShipment
impl Send for OrderShipment
impl Sync for OrderShipment
impl Unpin for OrderShipment
impl UnwindSafe for OrderShipment
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more