[][src]Struct billecta::OutgoingPaymentStatusView

pub struct OutgoingPaymentStatusView {
    pub amount: Option<AmountView>,
    pub comment: Option<String>,
    pub creditor_public_id: Option<Guid>,
    pub file: Option<FileView>,
    pub is_salary_payment: Option<bool>,
    pub payment_date: Option<DateTime>,
    pub payment_public_id: Option<Guid>,
    pub receiver_name: Option<String>,
    pub receiving_account_no: Option<String>,
    pub receiving_bankgiro_no: Option<String>,
    pub receiving_clearing_no: Option<String>,
    pub receiving_plusgiro_no: Option<String>,
    pub reference: Option<String>,
    pub sending_bankgiro_no: Option<String>,
    pub status: Option<OutgoingPaymentStatusTypeView>,
    pub verification_date: Option<DateTime>,
}

Fields

amount: Option<AmountView>comment: Option<String>creditor_public_id: Option<Guid>file: Option<FileView>is_salary_payment: Option<bool>payment_date: Option<DateTime>payment_public_id: Option<Guid>receiver_name: Option<String>receiving_account_no: Option<String>receiving_bankgiro_no: Option<String>receiving_clearing_no: Option<String>receiving_plusgiro_no: Option<String>reference: Option<String>sending_bankgiro_no: Option<String>status: Option<OutgoingPaymentStatusTypeView>verification_date: Option<DateTime>

Trait Implementations

impl Clone for OutgoingPaymentStatusView[src]

impl Debug for OutgoingPaymentStatusView[src]

impl Default for OutgoingPaymentStatusView[src]

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

impl Serialize for OutgoingPaymentStatusView[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: Deserialize<'de>, 
[src]

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