[][src]Struct firefly_iii::models::bill_paid_dates::BillPaidDates

pub struct BillPaidDates {
    pub transaction_group_id: Option<i32>,
    pub transaction_journal_id: Option<i32>,
    pub date: Option<String>,
}

Fields

transaction_group_id: Option<i32>

Transaction group ID of the paid bill.

transaction_journal_id: Option<i32>

Transaction journal ID of the paid bill.

date: Option<String>

Date the bill was paid.

Methods

impl BillPaidDates[src]

Trait Implementations

impl Debug for BillPaidDates[src]

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

impl PartialEq<BillPaidDates> for BillPaidDates[src]

impl Serialize for BillPaidDates[src]

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