Show / Hide Table of Contents

Class MerchantOrderReturn

Order return. Production access (all methods) requires the order manager role. Sandbox access does not.

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

Properties

CreationDate

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

Declaration
[JsonProperty("creationDate")]
public virtual string CreationDate { 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

MerchantOrderId

Merchant defined order ID.

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

OrderId

Google order ID.

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

OrderReturnId

Order return ID generated by Google.

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

ReturnItems

Items of the return.

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

ReturnShipments

Shipments of the return.

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

Implements

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