Show / Hide Table of Contents

Class WarehouseBasedDeliveryTime

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

Properties

Carrier

Required. Carrier, such as "UPS" or "Fedex". The list of supported carriers can be retrieved via the listSupportedCarriers method.

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

CarrierService

Required. Carrier service, such as "ground" or "2 days". The list of supported services for a carrier can be retrieved via the listSupportedCarriers method. The name of the service must be in the eddSupportedServices list.

Declaration
[JsonProperty("carrierService")]
public virtual string CarrierService { 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

OriginAdministrativeArea

Shipping origin's state.

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

OriginCity

Shipping origin's city.

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

OriginCountry

Shipping origin's country represented as a CLDR territory code.

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

OriginPostalCode

Shipping origin.

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

OriginStreetAddress

Shipping origin's street address

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

WarehouseName

The name of the warehouse. Warehouse name need to be matched with name. If warehouseName is set, the below fields will be ignored. The warehouse info will be read from warehouse.

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

Implements

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