Struct amazon_sp_merchant_fulfillment::models::additional_seller_input::AdditionalSellerInput
source · [−]pub struct AdditionalSellerInput {
pub data_type: Option<String>,
pub value_as_string: Option<String>,
pub value_as_boolean: Option<bool>,
pub value_as_integer: Option<i32>,
pub value_as_timestamp: Option<String>,
pub value_as_address: Option<Box<Address>>,
pub value_as_weight: Option<Box<Weight>>,
pub value_as_dimension: Option<Box<Length>>,
pub value_as_currency: Option<Box<CurrencyAmount>>,
}Expand description
AdditionalSellerInput : Additional information required to purchase shipping.
Fields
data_type: Option<String>The data type of the additional information.
value_as_string: Option<String>The value when the data type is string.
value_as_boolean: Option<bool>The value when the data type is boolean.
value_as_integer: Option<i32>The value when the data type is integer.
value_as_timestamp: Option<String>value_as_address: Option<Box<Address>>value_as_weight: Option<Box<Weight>>value_as_dimension: Option<Box<Length>>value_as_currency: Option<Box<CurrencyAmount>>Implementations
sourceimpl AdditionalSellerInput
impl AdditionalSellerInput
sourcepub fn new() -> AdditionalSellerInput
pub fn new() -> AdditionalSellerInput
Additional information required to purchase shipping.
Trait Implementations
sourceimpl Clone for AdditionalSellerInput
impl Clone for AdditionalSellerInput
sourcefn clone(&self) -> AdditionalSellerInput
fn clone(&self) -> AdditionalSellerInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AdditionalSellerInput
impl Debug for AdditionalSellerInput
sourceimpl Default for AdditionalSellerInput
impl Default for AdditionalSellerInput
sourcefn default() -> AdditionalSellerInput
fn default() -> AdditionalSellerInput
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AdditionalSellerInput
impl<'de> Deserialize<'de> for AdditionalSellerInput
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
sourceimpl PartialEq<AdditionalSellerInput> for AdditionalSellerInput
impl PartialEq<AdditionalSellerInput> for AdditionalSellerInput
sourcefn eq(&self, other: &AdditionalSellerInput) -> bool
fn eq(&self, other: &AdditionalSellerInput) -> bool
sourceimpl Serialize for AdditionalSellerInput
impl Serialize for AdditionalSellerInput
impl StructuralPartialEq for AdditionalSellerInput
Auto Trait Implementations
impl RefUnwindSafe for AdditionalSellerInput
impl Send for AdditionalSellerInput
impl Sync for AdditionalSellerInput
impl Unpin for AdditionalSellerInput
impl UnwindSafe for AdditionalSellerInput
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