pub struct SpendingPlanIterationItemResponse {
pub actual_amount: Option<f64>,
pub category_guid: Option<String>,
pub created_at: Option<String>,
pub guid: Option<String>,
pub item_type: Option<String>,
pub planned_amount: Option<f64>,
pub scheduled_payment_guid: Option<String>,
pub spending_plan_iteration_guid: Option<String>,
pub top_level_category_guid: Option<String>,
pub transaction_guids: Vec<Option<String>>,
pub updated_at: Option<String>,
pub user_guid: Option<String>,
}Expand description
SpendingPlanIterationItemResponse
JSON schema
{
"type": "object",
"properties": {
"actual_amount": {
"examples": [
345
],
"type": [
"number",
"null"
]
},
"category_guid": {
"examples": [
"CAT-40faf068-abb4-405c-8f6a-e883ed541fff"
],
"type": [
"string",
"null"
]
},
"created_at": {
"examples": [
"2016-10-13T18:08:00+00:00"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"
],
"type": [
"string",
"null"
]
},
"item_type": {
"examples": [
"1"
],
"type": [
"string",
"null"
]
},
"planned_amount": {
"examples": [
110
],
"type": [
"number",
"null"
]
},
"scheduled_payment_guid": {
"examples": [
"SCP-c731988a-712f-4f83-9b3b-0aa5b3d5208b"
],
"type": [
"string",
"null"
]
},
"spending_plan_iteration_guid": {
"examples": [
"SPI-848e6648-3fa3-4632-ac8f-e65f03167102"
],
"type": [
"string",
"null"
]
},
"top_level_category_guid": {
"examples": [
"CAT-9588eaad-90a4-bb5c-66c8-1812503d0db8"
],
"type": [
"string",
"null"
]
},
"transaction_guids": {
"type": "array",
"items": {
"examples": [
"TRN-265abee9-889b-af6a-c69b-25157db2bdd9"
],
"type": [
"string",
"null"
]
}
},
"updated_at": {
"examples": [
"2016-10-13T18:09:00+00:00"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-fa7537f3-48aa-a683-a02a-b18940482f54"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§actual_amount: Option<f64>§category_guid: Option<String>§created_at: Option<String>§guid: Option<String>§item_type: Option<String>§planned_amount: Option<f64>§scheduled_payment_guid: Option<String>§spending_plan_iteration_guid: Option<String>§top_level_category_guid: Option<String>§transaction_guids: Vec<Option<String>>§updated_at: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for SpendingPlanIterationItemResponse
impl Clone for SpendingPlanIterationItemResponse
Source§fn clone(&self) -> SpendingPlanIterationItemResponse
fn clone(&self) -> SpendingPlanIterationItemResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for SpendingPlanIterationItemResponse
impl<'de> Deserialize<'de> for SpendingPlanIterationItemResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&SpendingPlanIterationItemResponse> for SpendingPlanIterationItemResponse
impl From<&SpendingPlanIterationItemResponse> for SpendingPlanIterationItemResponse
Source§fn from(value: &SpendingPlanIterationItemResponse) -> Self
fn from(value: &SpendingPlanIterationItemResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpendingPlanIterationItemResponse
impl RefUnwindSafe for SpendingPlanIterationItemResponse
impl Send for SpendingPlanIterationItemResponse
impl Sync for SpendingPlanIterationItemResponse
impl Unpin for SpendingPlanIterationItemResponse
impl UnwindSafe for SpendingPlanIterationItemResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more