pub struct UpdateItemTaxesRequest {
pub item_ids: Vec<String>,
pub taxes_to_enable: Option<Vec<String>>,
pub taxes_to_disable: Option<Vec<String>>,
}
Expand description
This is a model struct for UpdateItemTaxesRequest type.
Fields§
§item_ids: Vec<String>
IDs for the CatalogItems associated with the CatalogTax objects being updated. No more than 1,000 IDs may be provided.
taxes_to_enable: Option<Vec<String>>
IDs of the CatalogTax objects to enable. At least one of taxes_to_enable
or
taxes_to_disable
must be specified.
taxes_to_disable: Option<Vec<String>>
IDs of the CatalogTax objects to disable. At least one of taxes_to_enable
or
taxes_to_disable
must be specified.
Trait Implementations§
Source§impl Clone for UpdateItemTaxesRequest
impl Clone for UpdateItemTaxesRequest
Source§fn clone(&self) -> UpdateItemTaxesRequest
fn clone(&self) -> UpdateItemTaxesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateItemTaxesRequest
impl Debug for UpdateItemTaxesRequest
Source§impl Default for UpdateItemTaxesRequest
impl Default for UpdateItemTaxesRequest
Source§fn default() -> UpdateItemTaxesRequest
fn default() -> UpdateItemTaxesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateItemTaxesRequest
impl PartialEq for UpdateItemTaxesRequest
Source§impl Serialize for UpdateItemTaxesRequest
impl Serialize for UpdateItemTaxesRequest
impl Eq for UpdateItemTaxesRequest
impl StructuralPartialEq for UpdateItemTaxesRequest
Auto Trait Implementations§
impl Freeze for UpdateItemTaxesRequest
impl RefUnwindSafe for UpdateItemTaxesRequest
impl Send for UpdateItemTaxesRequest
impl Sync for UpdateItemTaxesRequest
impl Unpin for UpdateItemTaxesRequest
impl UnwindSafe for UpdateItemTaxesRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.