Struct google_content2_sandbox::ShipmentInvoiceLineItemInvoice[][src]

pub struct ShipmentInvoiceLineItemInvoice {
    pub unit_invoice: Option<UnitInvoice>,
    pub shipment_unit_ids: Option<Vec<String>>,
    pub line_item_id: Option<String>,
    pub product_id: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

[required] Invoice details for a single unit.

[required] Unit IDs to define specific units within the line item.

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

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

Trait Implementations

impl Default for ShipmentInvoiceLineItemInvoice
[src]

Returns the "default value" for a type. Read more

impl Clone for ShipmentInvoiceLineItemInvoice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ShipmentInvoiceLineItemInvoice
[src]

Formats the value using the given formatter. Read more

impl Part for ShipmentInvoiceLineItemInvoice
[src]

Auto Trait Implementations