Show / Hide Table of Contents

Class ReturnShipment

Inheritance
System.Object
ReturnShipment
Implements
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_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class ReturnShipment : IDirectResponseSchema

Properties

CreationDate

The date of creation of the shipment, in ISO 8601 format.

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

DeliveryDate

The date of delivery of the shipment, in ISO 8601 format.

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

ReturnMethodType

Type of the return method. Acceptable values are: - "byMail" - "contactCustomerSupport" - "returnless"

  • "inStore"
Declaration
[JsonProperty("returnMethodType")]
public virtual string ReturnMethodType { get; set; }
Property Value
Type Description
System.String

ShipmentId

Shipment ID generated by Google.

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

ShipmentTrackingInfos

Tracking information of the shipment. One return shipment might be handled by several shipping carriers sequentially.

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

ShippingDate

The date of shipping of the shipment, in ISO 8601 format.

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

State

State of the shipment. Acceptable values are: - "completed" - "new" - "shipped" - "undeliverable" - "pending"

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

Implements

IDirectResponseSchema
In This Article
Back to top