Show / Hide Table of Contents

Class ShipmentInvoiceLineItemInvoice

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

Properties

ETag

The ETag of the item.

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

LineItemId

ID of the line item. Either lineItemId or productId must be set.

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

ProductId

ID of the product. This is the REST ID used in the products service. Either lineItemId or productId must be set.

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

ShipmentUnitIds

[required] The shipment unit ID is assigned by the merchant and defines individual quantities within a line item. The same ID can be assigned to units that are the same while units that differ must be assigned a different ID (for example: free or promotional units).

Declaration
[JsonProperty("shipmentUnitIds")]
public virtual IList<string> ShipmentUnitIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

UnitInvoice

[required] Invoice details for a single unit.

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

Implements

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