pub struct TaxAssociation {
pub calculation: String,
pub id: TaxAssociationId,
pub payment_intent: String,
pub tax_transaction_attempts: Option<Vec<TaxProductResourceTaxAssociationTransactionAttempts>>,
}Expand description
A Tax Association exposes the Tax Transactions that Stripe attempted to create on your behalf based on the PaymentIntent input.
Fields§
§calculation: StringThe Tax Calculation that was included in PaymentIntent.
id: TaxAssociationIdUnique identifier for the object.
payment_intent: StringThe PaymentIntent that this Tax Association is tracking.
tax_transaction_attempts: Option<Vec<TaxProductResourceTaxAssociationTransactionAttempts>>Information about the tax transactions linked to this payment intent
Trait Implementations§
Source§impl Clone for TaxAssociation
impl Clone for TaxAssociation
Source§fn clone(&self) -> TaxAssociation
fn clone(&self) -> TaxAssociation
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 TaxAssociation
impl Debug for TaxAssociation
Source§impl Deserialize for TaxAssociation
impl Deserialize for TaxAssociation
Source§impl FromValueOpt for TaxAssociation
impl FromValueOpt for TaxAssociation
fn from_value(v: Value) -> Option<Self>
Source§impl Object for TaxAssociation
impl Object for TaxAssociation
Source§impl ObjectDeser for TaxAssociation
impl ObjectDeser for TaxAssociation
Auto Trait Implementations§
impl Freeze for TaxAssociation
impl RefUnwindSafe for TaxAssociation
impl Send for TaxAssociation
impl Sync for TaxAssociation
impl Unpin for TaxAssociation
impl UnwindSafe for TaxAssociation
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