Show / Hide Table of Contents

Class OrdersCustomBatchRequestEntryRefundItemItem

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

Properties

Amount

The total amount that is refunded. (e.g. refunding $5 each for 2 products should be done by setting quantity to 2 and amount to 10$) In case of multiple refunds, this should be the amount you currently want to refund to the customer.

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 item will be refunded. 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>

LineItemId

The ID of the line item. Either lineItemId or productId is required.

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

ProductId

The ID of the product. This is the REST ID used in the products service. Either lineItemId or productId is required.

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

Quantity

The number of products that are refunded.

Declaration
[JsonProperty("quantity")]
public virtual int? Quantity { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top