Show / Hide Table of Contents

Class WarehouseBasedDeliveryTime

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

Required. Shipping origin's state.

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

OriginCity

Required. Shipping origin's city.

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

OriginCountry

Required. 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

Required. 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

Implements

IDirectResponseSchema
In This Article
Back to top