Show / Hide Table of Contents

Class ReturnPricingInfo

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

Properties

ChargeReturnShippingFee

Default option for whether merchant should charge the customer for return shipping costs, based on customer selected return reason and merchant's return policy for the items being returned.

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

ETag

The ETag of the item.

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

MaxReturnShippingFee

Maximum return shipping costs that may be charged to the customer depending on merchant's assessment of the return reason and the merchant's return policy for the items being returned.

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

RefundableItemsTotalAmount

Total amount that can be refunded for the items in this return. It represents the total amount received by the merchant for the items, after applying merchant coupons.

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

RefundableShippingAmount

Maximum amount that can be refunded for the original shipping fee.

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

TotalRefundedAmount

Total amount already refunded by the merchant. It includes all types of refunds (items, shipping, etc.) Not provided if no refund has been applied yet.

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

Implements

IDirectResponseSchema
In This Article
Back to top