Show / Hide Table of Contents

Class MerchantOrderReturnItem

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

MerchantRejectionReason

The reason that the merchant chose to reject an item return.

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

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

RefundableAmount

Maximum amount that can be refunded for this return item.

Declaration
[JsonProperty("refundableAmount")]
public virtual MonetaryAmount RefundableAmount { get; set; }
Property Value
Type Description
MonetaryAmount

ReturnItemId

Unit level ID for the return item. Different units of the same product will have different IDs.

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

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>

ShipmentGroupId

ID of the original shipment group. Provided for shipments with invoice support.

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

ShipmentUnitId

ID of the shipment unit assigned by the merchant. Provided for shipments with invoice support.

Declaration
[JsonProperty("shipmentUnitId")]
public virtual string ShipmentUnitId { get; set; }
Property Value
Type Description
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

IDirectResponseSchema
In This Article
Back to top