Show / Hide Table of Contents

Class OrdersCreateTestOrderRequest

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

Properties

Country

The CLDR territory code of the country of the test order to create. Affects the currency and addresses of orders created via template_name, or the addresses of orders created via test_order. Acceptable values are: - "US" - "FR" Defaults to US.

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

TemplateName

The test order template to use. Specify as an alternative to testOrder as a shortcut for retrieving a template and then creating an order using that template. Acceptable values are: - "template1" - "template1a" - "template1b" - "template2" - "template3"

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

TestOrder

The test order to create.

Declaration
[JsonProperty("testOrder")]
public virtual TestOrder TestOrder { get; set; }
Property Value
Type Description
TestOrder

Implements

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