pub struct TaxWithholdingEvent {
pub posted_date: Option<String>,
pub base_amount: Option<Box<Currency>>,
pub withheld_amount: Option<Box<Currency>>,
pub tax_withholding_period: Option<Box<TaxWithholdingPeriod>>,
}Expand description
TaxWithholdingEvent : A TaxWithholding event on seller’s account.
Fields
posted_date: Option<String>base_amount: Option<Box<Currency>>withheld_amount: Option<Box<Currency>>tax_withholding_period: Option<Box<TaxWithholdingPeriod>>Implementations
sourceimpl TaxWithholdingEvent
impl TaxWithholdingEvent
sourcepub fn new() -> TaxWithholdingEvent
pub fn new() -> TaxWithholdingEvent
A TaxWithholding event on seller’s account.
Trait Implementations
sourceimpl Clone for TaxWithholdingEvent
impl Clone for TaxWithholdingEvent
sourcefn clone(&self) -> TaxWithholdingEvent
fn clone(&self) -> TaxWithholdingEvent
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 TaxWithholdingEvent
impl Debug for TaxWithholdingEvent
sourceimpl Default for TaxWithholdingEvent
impl Default for TaxWithholdingEvent
sourcefn default() -> TaxWithholdingEvent
fn default() -> TaxWithholdingEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TaxWithholdingEvent
impl<'de> Deserialize<'de> for TaxWithholdingEvent
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<TaxWithholdingEvent> for TaxWithholdingEvent
impl PartialEq<TaxWithholdingEvent> for TaxWithholdingEvent
sourcefn eq(&self, other: &TaxWithholdingEvent) -> bool
fn eq(&self, other: &TaxWithholdingEvent) -> bool
sourceimpl Serialize for TaxWithholdingEvent
impl Serialize for TaxWithholdingEvent
impl StructuralPartialEq for TaxWithholdingEvent
Auto Trait Implementations
impl RefUnwindSafe for TaxWithholdingEvent
impl Send for TaxWithholdingEvent
impl Sync for TaxWithholdingEvent
impl Unpin for TaxWithholdingEvent
impl UnwindSafe for TaxWithholdingEvent
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