pub struct InventoryAdjustment {Show 19 fields
pub id: Option<String>,
pub adjustment_group: Option<InventoryAdjustmentGroup>,
pub catalog_object_id: String,
pub catalog_object_type: Option<CatalogObjectType>,
pub created_at: Option<String>,
pub employee_id: Option<String>,
pub from_state: Option<InventoryState>,
pub goods_receipt_id: Option<String>,
pub location_id: String,
pub occurred_at: Option<String>,
pub purchase_order_id: Option<String>,
pub quantity: Option<String>,
pub reference_id: Option<String>,
pub refund_id: Option<String>,
pub source: Option<SourceApplication>,
pub team_member_id: Option<String>,
pub to_state: Option<InventoryState>,
pub total_price_money: Option<Money>,
pub transaction_id: Option<String>,
}Fields§
§id: Option<String>§adjustment_group: Option<InventoryAdjustmentGroup>§catalog_object_id: String§catalog_object_type: Option<CatalogObjectType>§created_at: Option<String>§employee_id: Option<String>§from_state: Option<InventoryState>§goods_receipt_id: Option<String>§location_id: String§occurred_at: Option<String>§purchase_order_id: Option<String>§quantity: Option<String>§reference_id: Option<String>§refund_id: Option<String>§source: Option<SourceApplication>§team_member_id: Option<String>§to_state: Option<InventoryState>§total_price_money: Option<Money>§transaction_id: Option<String>Trait Implementations§
Source§impl Clone for InventoryAdjustment
impl Clone for InventoryAdjustment
Source§fn clone(&self) -> InventoryAdjustment
fn clone(&self) -> InventoryAdjustment
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 Debug for InventoryAdjustment
impl Debug for InventoryAdjustment
Source§impl<'de> Deserialize<'de> for InventoryAdjustment
impl<'de> Deserialize<'de> for InventoryAdjustment
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
Auto Trait Implementations§
impl Freeze for InventoryAdjustment
impl RefUnwindSafe for InventoryAdjustment
impl Send for InventoryAdjustment
impl Sync for InventoryAdjustment
impl Unpin for InventoryAdjustment
impl UnwindSafe for InventoryAdjustment
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