pub struct CreateSubscriptionAutomaticTax {
pub enabled: bool,
pub liability: Option<CreateSubscriptionAutomaticTaxLiability>,
}
Expand description
Automatic tax settings for this subscription.
Fields§
§enabled: bool
Enabled automatic tax calculation which will automatically compute tax rates on all invoices generated by the subscription.
liability: Option<CreateSubscriptionAutomaticTaxLiability>
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.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSubscriptionAutomaticTax
impl Clone for CreateSubscriptionAutomaticTax
Source§fn clone(&self) -> CreateSubscriptionAutomaticTax
fn clone(&self) -> CreateSubscriptionAutomaticTax
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 moreAuto Trait Implementations§
impl Freeze for CreateSubscriptionAutomaticTax
impl RefUnwindSafe for CreateSubscriptionAutomaticTax
impl Send for CreateSubscriptionAutomaticTax
impl Sync for CreateSubscriptionAutomaticTax
impl Unpin for CreateSubscriptionAutomaticTax
impl UnwindSafe for CreateSubscriptionAutomaticTax
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