[][src]Struct ya_client_model::payment::debit_note::DebitNote

pub struct DebitNote {
    pub debit_note_id: String,
    pub issuer_id: NodeId,
    pub recipient_id: NodeId,
    pub payee_addr: String,
    pub payer_addr: String,
    pub payment_platform: String,
    pub previous_debit_note_id: Option<String>,
    pub timestamp: DateTime<Utc>,
    pub agreement_id: String,
    pub activity_id: String,
    pub total_amount_due: BigDecimal,
    pub usage_counter_vector: Option<Value>,
    pub payment_due_date: Option<DateTime<Utc>>,
    pub status: DocumentStatus,
}

Fields

debit_note_id: Stringissuer_id: NodeIdrecipient_id: NodeIdpayee_addr: Stringpayer_addr: Stringpayment_platform: Stringprevious_debit_note_id: Option<String>timestamp: DateTime<Utc>agreement_id: Stringactivity_id: Stringtotal_amount_due: BigDecimalusage_counter_vector: Option<Value>payment_due_date: Option<DateTime<Utc>>status: DocumentStatus

Trait Implementations

impl Clone for DebitNote[src]

impl Debug for DebitNote[src]

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

impl PartialEq<DebitNote> for DebitNote[src]

impl Serialize for DebitNote[src]

impl StructuralPartialEq for DebitNote[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, 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.