Struct lexoffice::model::payments::Payment[][src]

pub struct Payment {
    pub open_amount: Option<f64>,
    pub currency: Option<Currency>,
    pub payment_status: Option<PaymentStatus>,
    pub voucher_type: Option<VoucherType>,
    pub voucher_status: Option<VoucherStatus>,
}
{
  "openAmount": 200.00,
  "currency": "EUR",
  "paymentStatus": "openRevenue",
  "voucherType": "invoice",
  "voucherStatus": "open"
}

{
  "openAmount": 39.90,
  "paymentStatus": "openExpense",
  "currency": "EUR",
  "voucherType": "purchaseinvoice",
  "voucherStatus": "open"
}

{
  "openAmount": 0,
  "currency": "EUR",
  "paymentStatus": "balanced",
  "voucherType": "purchasecreditnote",
  "voucherStatus": "paidoff"
}

Fields

open_amount: Option<f64>

Open amount. Positive value both for revenues and expenses

currency: Option<Currency>

Always contains the value EUR, the only currently supported currency

payment_status: Option<PaymentStatus>

The payment status is one of the values balanced, openRevenue, or openExpense

voucher_type: Option<VoucherType>

Contains the voucher type: salesinvoice, salescreditnote, purchaseinvoice, purchasecreditnote, invoice, downpaymentinvoice, creditnote

voucher_status: Option<VoucherStatus>

Contains one of the following voucher states: open, paid, paidoff, voided, transferred, sepadebit

Implementations

impl Payment[src]

pub fn builder() -> PaymentBuilder<((), (), (), (), ())>[src]

Create a builder for building Payment. On the builder, call .open_amount(...)(optional), .currency(...)(optional), .payment_status(...)(optional), .voucher_type(...)(optional), .voucher_status(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of Payment.

Trait Implementations

impl Clone for Payment[src]

impl Debug for Payment[src]

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

impl PartialEq<Payment> for Payment[src]

impl Serialize for Payment[src]

impl StructuralPartialEq for Payment[src]

Auto Trait Implementations

impl RefUnwindSafe for Payment

impl Send for Payment

impl Sync for Payment

impl Unpin for Payment

impl UnwindSafe for Payment

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.