Show / Hide Table of Contents

Class ShipmentInvoice

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

Properties

ETag

The ETag of the item.

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

InvoiceSummary

[required] Invoice summary.

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

LineItemInvoices

[required] Invoice details per line item.

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

ShipmentGroupId

[required] ID of the shipment group. It is assigned by the merchant in the shipLineItems method and is used to group multiple line items that have the same kind of shipping charges.

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

Implements

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