Show / Hide Table of Contents

Class TestOrderPickupDetails

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

Properties

ETag

The ETag of the item.

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

LocationCode

Required. Code of the location defined by provider or merchant.

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

PickupLocationAddress

Required. Pickup location address.

Declaration
[JsonProperty("pickupLocationAddress")]
public virtual TestOrderAddress PickupLocationAddress { get; set; }
Property Value
Type Description
TestOrderAddress

PickupLocationType

Pickup location type. Acceptable values are: - "locker" - "store" - "curbside"

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

PickupPersons

Required. all pickup persons set by users.

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

Implements

IDirectResponseSchema
In This Article
Back to top