pub struct TaxDeductedAtSource {
pub id: TaxDeductedAtSourceId,
pub period_end: Timestamp,
pub period_start: Timestamp,
pub tax_deduction_account_number: String,
}
Fields§
§id: TaxDeductedAtSourceId
Unique identifier for the object.
period_end: Timestamp
The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
period_start: Timestamp
The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
tax_deduction_account_number: String
The TAN that was supplied to Stripe when TDS was assessed
Trait Implementations§
Source§impl Clone for TaxDeductedAtSource
impl Clone for TaxDeductedAtSource
Source§fn clone(&self) -> TaxDeductedAtSource
fn clone(&self) -> TaxDeductedAtSource
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 Debug for TaxDeductedAtSource
impl Debug for TaxDeductedAtSource
Source§impl Deserialize for TaxDeductedAtSource
impl Deserialize for TaxDeductedAtSource
Source§impl FromValueOpt for TaxDeductedAtSource
impl FromValueOpt for TaxDeductedAtSource
fn from_value(v: Value) -> Option<Self>
Source§impl Object for TaxDeductedAtSource
impl Object for TaxDeductedAtSource
Auto Trait Implementations§
impl Freeze for TaxDeductedAtSource
impl RefUnwindSafe for TaxDeductedAtSource
impl Send for TaxDeductedAtSource
impl Sync for TaxDeductedAtSource
impl Unpin for TaxDeductedAtSource
impl UnwindSafe for TaxDeductedAtSource
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