pub struct AccounttaxCustomBatchRequestEntry {
pub account_id: Option<u64>,
pub account_tax: Option<AccountTax>,
pub batch_id: Option<u32>,
pub merchant_id: Option<u64>,
pub method: Option<String>,
}Expand description
A batch entry encoding a single non-batch accounttax request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§account_id: Option<u64>The ID of the account for which to get/update account tax settings.
account_tax: Option<AccountTax>The account tax settings to update. Only defined if the method is update.
batch_id: Option<u32>An entry ID, unique within the batch request.
merchant_id: Option<u64>The ID of the managing account.
method: Option<String>The method of the batch entry. Acceptable values are: - “get” - “update”
Trait Implementations§
Source§impl Clone for AccounttaxCustomBatchRequestEntry
impl Clone for AccounttaxCustomBatchRequestEntry
Source§fn clone(&self) -> AccounttaxCustomBatchRequestEntry
fn clone(&self) -> AccounttaxCustomBatchRequestEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AccounttaxCustomBatchRequestEntry
impl Default for AccounttaxCustomBatchRequestEntry
Source§fn default() -> AccounttaxCustomBatchRequestEntry
fn default() -> AccounttaxCustomBatchRequestEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccounttaxCustomBatchRequestEntry
impl<'de> Deserialize<'de> for AccounttaxCustomBatchRequestEntry
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
impl Part for AccounttaxCustomBatchRequestEntry
Auto Trait Implementations§
impl Freeze for AccounttaxCustomBatchRequestEntry
impl RefUnwindSafe for AccounttaxCustomBatchRequestEntry
impl Send for AccounttaxCustomBatchRequestEntry
impl Sync for AccounttaxCustomBatchRequestEntry
impl Unpin for AccounttaxCustomBatchRequestEntry
impl UnwindSafe for AccounttaxCustomBatchRequestEntry
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