Show / Hide Table of Contents

Class OrdersCustomBatchRequestEntryUpdateShipment

Inheritance
System.Object
OrdersCustomBatchRequestEntryUpdateShipment
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 OrdersCustomBatchRequestEntryUpdateShipment : IDirectResponseSchema

Properties

Carrier

The carrier handling the shipment. Not updated if missing. See shipments[].carrier in the Orders resource representation for a list of acceptable values.

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

DeliveryDate

Date on which the shipment has been delivered, in ISO 8601 format. Optional and can be provided 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

ShipmentId

The ID of the shipment.

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

Status

New status for the shipment. Not updated if missing. Acceptable values are: - "delivered" - "undeliverable" - "readyForPickup"

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

TrackingId

The tracking ID for the shipment. Not updated if missing.

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