Show / Hide Table of Contents

Class OrdersCustomBatchRequestEntryRefundItemShipping

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

Properties

Amount

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

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

ETag

The ETag of the item.

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

FullRefund

If set to true, all shipping costs for the order will be refunded. If this is true, amount should not be provided and will be ignored. If set to false, submit the amount of the partial shipping refund, excluding the shipping tax. The shipping tax is calculated and handled on Google's side.

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

Implements

IDirectResponseSchema
In This Article
Back to top