pub struct OrderLineItemsProductDataApiSchema {
pub manufacturer_part_number: Option<String>,
pub weight: Option<f64>,
pub brand: Option<String>,
pub color: Option<String>,
pub global_trade_item_number: Option<String>,
pub weight_unit: Option<String>,
pub sku: Option<String>,
}Fields
manufacturer_part_number: Option<String>The product Manufacturer Part Number
weight: Option<f64>The product weight
brand: Option<String>The product brand
color: Option<String>The product color
global_trade_item_number: Option<String>The product Global Trade Item Number (e.g. ISBN)
weight_unit: Option<String>The product weight unit (e.g. kg, g)
sku: Option<String>The product SKU
Trait Implementations
sourceimpl Default for OrderLineItemsProductDataApiSchema
impl Default for OrderLineItemsProductDataApiSchema
sourcefn default() -> OrderLineItemsProductDataApiSchema
fn default() -> OrderLineItemsProductDataApiSchema
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for OrderLineItemsProductDataApiSchema
impl<'de> Deserialize<'de> for OrderLineItemsProductDataApiSchema
sourcefn 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 RefUnwindSafe for OrderLineItemsProductDataApiSchema
impl Send for OrderLineItemsProductDataApiSchema
impl Sync for OrderLineItemsProductDataApiSchema
impl Unpin for OrderLineItemsProductDataApiSchema
impl UnwindSafe for OrderLineItemsProductDataApiSchema
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more