Show / Hide Table of Contents

Class OrdersCustomBatchRequestEntryRefundItemItem

Inheritance
object
OrdersCustomBatchRequestEntryRefundItemItem
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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. (for example, 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
string

FullRefund

If true, the full item will be refunded. If this is true, amount shouldn't be provided and will be ignored.

Declaration
[JsonProperty("fullRefund")]
public virtual bool? FullRefund { get; set; }
Property Value
Type Description
bool?

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
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
string

Quantity

The number of products that are refunded.

Declaration
[JsonProperty("quantity")]
public virtual int? Quantity { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX