[][src]Struct paypal_rs::orders::TaxInfo

pub struct TaxInfo {
    pub tax_id: String,
    pub tax_id_type: TaxIdType,
}

Fields

tax_id: String

The customer's tax ID. Supported for the PayPal payment method only. Typically, the tax ID is 11 characters long for individuals and 14 characters long for businesses.

tax_id_type: TaxIdType

The customer's tax ID type. Supported for the PayPal payment method only.

Trait Implementations

impl Debug for TaxInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for TaxInfo

impl Send for TaxInfo

impl Sync for TaxInfo

impl Unpin for TaxInfo

impl UnwindSafe for TaxInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.