Show / Hide Table of Contents

Class ShippingSettings

The merchant account's shipping settings. All methods except getsupportedcarriers and getsupportedholidays require the admin role.

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

Properties

AccountId

The ID of the account to which these account shipping settings belong. Ignored upon update, always present in get request responses.

Declaration
[JsonProperty("accountId")]
public virtual ulong? AccountId { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ETag

The ETag of the item.

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

PostalCodeGroups

A list of postal code groups that can be referred to in services. Optional.

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

Services

The target account's list of services. Optional.

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

Warehouses

Optional. A list of warehouses which can be referred to in services.

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

Implements

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