pub struct CreateInvoiceAutomaticTax {
pub enabled: bool,
pub liability: Option<CreateInvoiceAutomaticTaxLiability>,
}
Expand description
Settings for automatic tax lookup for this invoice.
Fields§
§enabled: bool
Whether Stripe automatically computes tax on this invoice.
Note that incompatible invoice items (invoice items with manually specified tax rates, negative amounts, or tax_behavior=unspecified
) cannot be added to automatic tax invoices.
liability: Option<CreateInvoiceAutomaticTaxLiability>
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 CreateInvoiceAutomaticTax
impl Clone for CreateInvoiceAutomaticTax
Source§fn clone(&self) -> CreateInvoiceAutomaticTax
fn clone(&self) -> CreateInvoiceAutomaticTax
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 CreateInvoiceAutomaticTax
impl Debug for CreateInvoiceAutomaticTax
Auto Trait Implementations§
impl Freeze for CreateInvoiceAutomaticTax
impl RefUnwindSafe for CreateInvoiceAutomaticTax
impl Send for CreateInvoiceAutomaticTax
impl Sync for CreateInvoiceAutomaticTax
impl Unpin for CreateInvoiceAutomaticTax
impl UnwindSafe for CreateInvoiceAutomaticTax
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