[][src]Struct paypal_rs::invoice::RecipientInfo

pub struct RecipientInfo {
    pub billing_info: Option<BillingInfo>,
    pub shipping_info: Option<ContactInformation>,
}

Recipient information

Fields

billing_info: Option<BillingInfo>

The billing information for the invoice recipient. Includes name, address, email, phone, and language.

shipping_info: Option<ContactInformation>

The recipient's shipping information. Includes the user's contact information, which includes name and address.

Trait Implementations

impl Debug for RecipientInfo[src]

impl Default for RecipientInfo[src]

impl<'de> Deserialize<'de> for RecipientInfo[src]

impl Serialize for RecipientInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.