Show / Hide Table of Contents

Class TestOrder

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

Properties

EnableOrderinvoices

Whether the orderinvoices service should support this order.

Declaration
[JsonProperty("enableOrderinvoices")]
public virtual bool? EnableOrderinvoices { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "content#testOrder".

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

LineItems

Line items that are ordered. At least one line item must be provided.

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

NotificationMode

Determines if test order must be pulled by merchant or pushed to merchant via push integration.

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

PredefinedBillingAddress

The billing address.

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

PredefinedDeliveryAddress

Identifier of one of the predefined delivery addresses for the delivery.

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

PredefinedEmail

Email address of the customer.

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

PredefinedPickupDetails

Identifier of one of the predefined pickup details. Required for orders containing line items with shipping type pickup.

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

Promotions

Promotions associated with the order.

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

ShippingCost

The price of shipping for all items. Shipping tax is automatically calculated for orders where marketplace facilitator tax laws are applicable. Otherwise, tax settings from Merchant Center are applied. Note that shipping is not taxed in certain states.

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

ShippingOption

The requested shipping option.

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

Implements

IDirectResponseSchema
Back to top