Show / Hide Table of Contents

Class ReturnPolicy

Return policy resource.

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

Properties

Country

Required. The country of sale where the return policy is applicable.

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

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "content#returnPolicy"

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

Label

Required. The user-defined label of the return policy. For the default policy, use the label "default".

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

Name

Required. The name of the policy as shown in Merchant Center.

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

NonFreeReturnReasons

Return reasons that will incur return fees.

Declaration
[JsonProperty("nonFreeReturnReasons")]
public virtual IList<string> NonFreeReturnReasons { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Policy

Required. The policy.

Declaration
[JsonProperty("policy")]
public virtual ReturnPolicyPolicy Policy { get; set; }
Property Value
Type Description
ReturnPolicyPolicy

ReturnPolicyId

Return policy ID generated by Google.

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

ReturnShippingFee

The return shipping fee that will apply to non free return reasons.

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

SeasonalOverrides

An optional list of seasonal overrides.

Declaration
[JsonProperty("seasonalOverrides")]
public virtual IList<ReturnPolicySeasonalOverride> SeasonalOverrides { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ReturnPolicySeasonalOverride>

Implements

IDirectResponseSchema
In This Article
Back to top