Show / Hide Table of Contents

Class OrdersRefundOrderRequest

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

Properties

Amount

The amount that is refunded. If this is not the first refund for the order, this should be the newly refunded amount.

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

ETag

The ETag of the item.

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

FullRefund

If true, the full order will be refunded, including shipping. If this is true, amount should not be provided and will be ignored.

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

OperationId

The ID of the operation. Unique across all operations for a given order.

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

Reason

The reason for the refund. Acceptable values are: - "courtesyAdjustment" - "other"

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

Implements

IDirectResponseSchema
In This Article
Back to top