[][src]Struct billecta::CreditCardPaymentView

pub struct CreditCardPaymentView {
    pub action_public_id: Option<String>,
    pub action_type: Option<ActionTypeView>,
    pub amount: Option<AmountView>,
    pub comment: Option<String>,
    pub created: Option<DateTime>,
    pub creditor_public_id: Option<Guid>,
    pub failure_url: Option<String>,
    pub funding: Option<String>,
    pub language: Option<LanguageTypeView>,
    pub payment_date: Option<DateTime>,
    pub payment_public_id: Option<Guid>,
    pub payment_window_url: Option<String>,
    pub status: Option<CreditCardPaymentStatusTypeView>,
    pub success_url: Option<String>,
}

Fields

action_public_id: Option<String>action_type: Option<ActionTypeView>amount: Option<AmountView>comment: Option<String>created: Option<DateTime>creditor_public_id: Option<Guid>failure_url: Option<String>funding: Option<String>language: Option<LanguageTypeView>payment_date: Option<DateTime>payment_public_id: Option<Guid>payment_window_url: Option<String>status: Option<CreditCardPaymentStatusTypeView>success_url: Option<String>

Trait Implementations

impl Clone for CreditCardPaymentView[src]

impl Debug for CreditCardPaymentView[src]

impl Default for CreditCardPaymentView[src]

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

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