Show / Hide Table of Contents

Class OrdersShipLineItemsRequest

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

Properties

Carrier

Deprecated. Please use shipmentInfo instead. The carrier handling the shipment. 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

ETag

The ETag of the item.

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

LineItems

Line items to ship.

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

OperationId

The ID of the operation. Unique across all operations for a given order.

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

ShipmentGroupId

ID of the shipment group. Required for orders that use the orderinvoices service.

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

ShipmentId

Deprecated. Please use shipmentInfo instead. The ID of the shipment.

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

ShipmentInfos

Shipment information. This field is repeated because a single line item can be shipped in several packages (and have several tracking IDs).

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

TrackingId

Deprecated. Please use shipmentInfo instead. 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