Show / Hide Table of Contents

Class OrderreturnsRefundOperation

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

Properties

ETag

The ETag of the item.

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

FullRefund

If true, the item will be fully refunded. Allowed only when payment_type is FOP. Merchant can choose this refund option to indicate the full remaining amount of corresponding object to be refunded to the customer via FOP.

Declaration
[JsonProperty("fullRefund")]
public virtual bool? FullRefund { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

PartialRefund

If this is set, the item will be partially refunded. Merchant can choose this refund option to specify the customized amount that to be refunded to the customer.

Declaration
[JsonProperty("partialRefund")]
public virtual OrderreturnsPartialRefund PartialRefund { get; set; }
Property Value
Type Description
OrderreturnsPartialRefund

PaymentType

The payment way of issuing refund. Default value is ORIGINAL_FOP if not set.

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

ReasonText

The explanation of the reason.

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

ReturnRefundReason

Code of the refund reason.

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

Implements

IDirectResponseSchema
In This Article
Back to top