pub struct ShipmentInvoiceLineItemInvoice {
pub line_item_id: Option<String>,
pub product_id: Option<String>,
pub shipment_unit_ids: Option<Vec<String>>,
pub unit_invoice: Option<UnitInvoice>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§line_item_id: Option<String>ID of the line item. Either lineItemId or productId must be set.
product_id: Option<String>ID of the product. This is the REST ID used in the products service. Either lineItemId or productId must be set.
shipment_unit_ids: Option<Vec<String>>[required] Unit IDs to define specific units within the line item.
unit_invoice: Option<UnitInvoice>[required] Invoice details for a single unit.
Trait Implementations§
Source§impl Clone for ShipmentInvoiceLineItemInvoice
impl Clone for ShipmentInvoiceLineItemInvoice
Source§fn clone(&self) -> ShipmentInvoiceLineItemInvoice
fn clone(&self) -> ShipmentInvoiceLineItemInvoice
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ShipmentInvoiceLineItemInvoice
impl Default for ShipmentInvoiceLineItemInvoice
Source§fn default() -> ShipmentInvoiceLineItemInvoice
fn default() -> ShipmentInvoiceLineItemInvoice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShipmentInvoiceLineItemInvoice
impl<'de> Deserialize<'de> for ShipmentInvoiceLineItemInvoice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for ShipmentInvoiceLineItemInvoice
Auto Trait Implementations§
impl Freeze for ShipmentInvoiceLineItemInvoice
impl RefUnwindSafe for ShipmentInvoiceLineItemInvoice
impl Send for ShipmentInvoiceLineItemInvoice
impl Sync for ShipmentInvoiceLineItemInvoice
impl Unpin for ShipmentInvoiceLineItemInvoice
impl UnwindSafe for ShipmentInvoiceLineItemInvoice
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more