[][src]Struct paypal_rs::invoice::InvoiceDetail

pub struct InvoiceDetail {
    pub reference: Option<String>,
    pub currency_code: String,
    pub note: Option<String>,
    pub terms_and_conditions: Option<String>,
    pub memo: Option<String>,
    pub attachments: Option<Vec<FileReference>>,
    pub invoice_number: String,
    pub invoice_date: DateTime<Utc>,
    pub payment_term: PaymentTerm,
    pub metadata: Metadata,
}

The details of the invoice. Includes the invoice number, date, payment terms, and audit metadata.

Fields

reference: Option<String>

The reference data. Includes a post office (PO) number.

currency_code: String

The three-character ISO-4217 currency code that identifies the currency.

note: Option<String>

A note to the invoice recipient. Also appears on the invoice notification email.

terms_and_conditions: Option<String>

The general terms of the invoice. Can include return or cancellation policy and other terms and conditions.

memo: Option<String>

A private bookkeeping memo for the user.

attachments: Option<Vec<FileReference>>

An array of PayPal IDs for the files that are attached to an invoice.

invoice_number: String

The invoice number. Default is the number that is auto-incremented number from the last number.

invoice_date: DateTime<Utc>

The invoice date as specificed by the sender

payment_term: PaymentTerm

The payment due date for the invoice.

metadata: Metadata

The audit metadata

Trait Implementations

impl Debug for InvoiceDetail[src]

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

impl Serialize for InvoiceDetail[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.