Show / Hide Table of Contents

Class ProductShipping

Inheritance
System.Object
ProductShipping
Implements
Google.Apis.Requests.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.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class ProductShipping : IDirectResponseSchema

Properties

Country

The CLDR territory code of the country to which an item will ship.

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

LocationGroupName

The location where the shipping is applicable, represented by a location group name.

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

LocationId

The numeric ID of a location that the shipping rate applies to as defined in the AdWords API.

Declaration
[JsonProperty("locationId")]
public virtual long? LocationId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PostalCode

The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.

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

Price

Fixed shipping price, represented as a number.

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

Region

The geographic region to which a shipping rate applies.

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

Service

A free-form description of the service class or delivery speed.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top