Show / Hide Table of Contents

Class MerchantOrderReturnItem

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

Properties

CustomerReturnReason

The reason that the customer chooses to return an item.

Declaration
[JsonProperty("customerReturnReason")]
public virtual CustomerReturnReason CustomerReturnReason { get; set; }
Property Value
Type Description
CustomerReturnReason

ETag

The ETag of the item.

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

ItemId

Product level item ID. If the returned items are of the same product, they will have the same ID.

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

MerchantReturnReason

The reason that merchant chooses to accept a return item.

Declaration
[JsonProperty("merchantReturnReason")]
public virtual RefundReason MerchantReturnReason { get; set; }
Property Value
Type Description
RefundReason

Product

Product data from the time of the order placement.

Declaration
[JsonProperty("product")]
public virtual OrderLineItemProduct Product { get; set; }
Property Value
Type Description
OrderLineItemProduct

ReturnShipmentIds

IDs of the return shipments that this return item belongs to.

Declaration
[JsonProperty("returnShipmentIds")]
public virtual IList<string> ReturnShipmentIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

State

State of the item. Acceptable values are: - "canceled" - "new" - "received" - "refunded" - "rejected"

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

Implements

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