Show / Hide Table of Contents

Class TestOrderLineItem

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

Properties

ETag

The ETag of the item.

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

Product

Required. Product data from the time of the order placement.

Declaration
[JsonProperty("product")]
public virtual TestOrderLineItemProduct Product { get; set; }
Property Value
Type Description
TestOrderLineItemProduct

QuantityOrdered

Required. Number of items ordered.

Declaration
[JsonProperty("quantityOrdered")]
public virtual long? QuantityOrdered { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ReturnInfo

Required. Details of the return policy for the line item.

Declaration
[JsonProperty("returnInfo")]
public virtual OrderLineItemReturnInfo ReturnInfo { get; set; }
Property Value
Type Description
OrderLineItemReturnInfo

ShippingDetails

Required. Details of the requested shipping for the line item.

Declaration
[JsonProperty("shippingDetails")]
public virtual OrderLineItemShippingDetails ShippingDetails { get; set; }
Property Value
Type Description
OrderLineItemShippingDetails

UnitTax

Deprecated. Ignored if provided.

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

Implements

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