pub struct SchedulesPhaseAutomaticTax {
pub disabled_reason: Option<SchedulesPhaseAutomaticTaxDisabledReason>,
pub enabled: bool,
pub liability: Option<ConnectAccountReference>,
}
Fields§
§disabled_reason: Option<SchedulesPhaseAutomaticTaxDisabledReason>
If Stripe disabled automatic tax, this enum describes why.
enabled: bool
Whether Stripe automatically computes tax on invoices created during this phase.
liability: Option<ConnectAccountReference>
The account that’s liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
Trait Implementations§
Source§impl Clone for SchedulesPhaseAutomaticTax
impl Clone for SchedulesPhaseAutomaticTax
Source§fn clone(&self) -> SchedulesPhaseAutomaticTax
fn clone(&self) -> SchedulesPhaseAutomaticTax
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 SchedulesPhaseAutomaticTax
impl Debug for SchedulesPhaseAutomaticTax
Source§impl FromValueOpt for SchedulesPhaseAutomaticTax
impl FromValueOpt for SchedulesPhaseAutomaticTax
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for SchedulesPhaseAutomaticTax
impl RefUnwindSafe for SchedulesPhaseAutomaticTax
impl Send for SchedulesPhaseAutomaticTax
impl Sync for SchedulesPhaseAutomaticTax
impl Unpin for SchedulesPhaseAutomaticTax
impl UnwindSafe for SchedulesPhaseAutomaticTax
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