pub struct OrderLineItemsProductDataApiSchema {
pub brand: Option<String>,
pub sku: Option<String>,
pub color: Option<String>,
pub global_trade_item_number: Option<String>,
pub weight_unit: Option<String>,
pub manufacturer_part_number: Option<String>,
pub weight: Option<f64>,
}
Fields§
§brand: Option<String>
The product brand
sku: Option<String>
The product SKU
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)
manufacturer_part_number: Option<String>
The product Manufacturer Part Number
weight: Option<f64>
The product weight
Trait Implementations§
Source§impl Default for OrderLineItemsProductDataApiSchema
impl Default for OrderLineItemsProductDataApiSchema
Source§fn default() -> OrderLineItemsProductDataApiSchema
fn default() -> OrderLineItemsProductDataApiSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderLineItemsProductDataApiSchema
impl<'de> Deserialize<'de> for OrderLineItemsProductDataApiSchema
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 OrderLineItemsProductDataApiSchema
impl RefUnwindSafe for OrderLineItemsProductDataApiSchema
impl Send for OrderLineItemsProductDataApiSchema
impl Sync for OrderLineItemsProductDataApiSchema
impl Unpin for OrderLineItemsProductDataApiSchema
impl UnwindSafe for OrderLineItemsProductDataApiSchema
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