Show / Hide Table of Contents

Class UnitInvoice

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

Properties

AdditionalCharges

Additional charges for a unit, e.g. shipping costs.

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

ETag

The ETag of the item.

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

Promotions

Deprecated.

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

UnitPricePretax

[required] Price of the unit, before applying taxes.

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

UnitPriceTaxes

Tax amounts to apply to the unit price.

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

Implements

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