pub struct FeesEstimateIdentifier {
pub marketplace_id: Option<String>,
pub seller_id: Option<String>,
pub id_type: Option<IdType>,
pub id_value: Option<String>,
pub is_amazon_fulfilled: Option<bool>,
pub price_to_estimate_fees: Option<Box<PriceToEstimateFees>>,
pub seller_input_identifier: Option<String>,
pub optional_fulfillment_program: Option<OptionalFulfillmentProgram>,
}Expand description
FeesEstimateIdentifier : An item identifier, marketplace, time of request, and other details that identify an estimate.
Fields
marketplace_id: Option<String>A marketplace identifier.
seller_id: Option<String>The seller identifier.
id_type: Option<IdType>id_value: Option<String>The item identifier.
is_amazon_fulfilled: Option<bool>When true, the offer is fulfilled by Amazon.
price_to_estimate_fees: Option<Box<PriceToEstimateFees>>seller_input_identifier: Option<String>A unique identifier provided by the caller to track this request.
optional_fulfillment_program: Option<OptionalFulfillmentProgram>Implementations
sourceimpl FeesEstimateIdentifier
impl FeesEstimateIdentifier
sourcepub fn new() -> FeesEstimateIdentifier
pub fn new() -> FeesEstimateIdentifier
An item identifier, marketplace, time of request, and other details that identify an estimate.
Trait Implementations
sourceimpl Clone for FeesEstimateIdentifier
impl Clone for FeesEstimateIdentifier
sourcefn clone(&self) -> FeesEstimateIdentifier
fn clone(&self) -> FeesEstimateIdentifier
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 FeesEstimateIdentifier
impl Debug for FeesEstimateIdentifier
sourceimpl Default for FeesEstimateIdentifier
impl Default for FeesEstimateIdentifier
sourcefn default() -> FeesEstimateIdentifier
fn default() -> FeesEstimateIdentifier
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FeesEstimateIdentifier
impl<'de> Deserialize<'de> for FeesEstimateIdentifier
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<FeesEstimateIdentifier> for FeesEstimateIdentifier
impl PartialEq<FeesEstimateIdentifier> for FeesEstimateIdentifier
sourcefn eq(&self, other: &FeesEstimateIdentifier) -> bool
fn eq(&self, other: &FeesEstimateIdentifier) -> bool
sourceimpl Serialize for FeesEstimateIdentifier
impl Serialize for FeesEstimateIdentifier
impl StructuralPartialEq for FeesEstimateIdentifier
Auto Trait Implementations
impl RefUnwindSafe for FeesEstimateIdentifier
impl Send for FeesEstimateIdentifier
impl Sync for FeesEstimateIdentifier
impl Unpin for FeesEstimateIdentifier
impl UnwindSafe for FeesEstimateIdentifier
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