[][src]Struct ynab_api::models::month_detail::MonthDetail

pub struct MonthDetail {
    pub month: String,
    pub note: Option<String>,
    pub income: i64,
    pub budgeted: i64,
    pub activity: i64,
    pub to_be_budgeted: i64,
    pub age_of_money: Option<i32>,
    pub deleted: bool,
    pub categories: Vec<Category>,
}

Fields

month: Stringnote: Option<String>income: i64

The total amount in transactions categorized to 'Inflow: To be Budgeted' in the month

budgeted: i64

The total amount budgeted in the month

activity: i64

The total amount in transactions in the month, excluding those categorized to 'Inflow: To be Budgeted'

to_be_budgeted: i64

The available amount for 'To be Budgeted'

age_of_money: Option<i32>

The Age of Money as of the month

deleted: bool

Whether or not the month has been deleted. Deleted months will only be included in delta requests.

categories: Vec<Category>

The budget month categories. Amounts (budgeted, activity, balance, etc.) are specific to the {month} parameter specified.

Methods

impl MonthDetail[src]

pub fn new(
    month: String,
    income: i64,
    budgeted: i64,
    activity: i64,
    to_be_budgeted: i64,
    deleted: bool,
    categories: Vec<Category>
) -> MonthDetail
[src]

Trait Implementations

impl PartialEq<MonthDetail> for MonthDetail[src]

impl Debug for MonthDetail[src]

impl StructuralPartialEq for MonthDetail[src]

impl Serialize for MonthDetail[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err