pub struct SpendingPlanIterationItemCreateRequestBody {
pub category_guid: Option<String>,
pub item_type: Option<f64>,
pub planned_amount: f64,
pub scheduled_payment_guid: Option<String>,
pub top_level_category_guid: Option<String>,
}Expand description
SpendingPlanIterationItemCreateRequestBody
JSON schema
{
"type": "object",
"required": [
"planned_amount"
],
"properties": {
"category_guid": {
"examples": [
"CAT-40faf068-abb4-405c-8f6a-e883ed541fff"
],
"type": "string"
},
"item_type": {
"examples": [
1
],
"type": "number"
},
"planned_amount": {
"examples": [
110
],
"type": "number"
},
"scheduled_payment_guid": {
"examples": [
"SCP-c731988a-712f-4f83-9b3b-0aa5b3d5208b"
],
"type": "string"
},
"top_level_category_guid": {
"examples": [
"CAT-9588eaad-90a4-bb5c-66c8-1812503d0db8"
],
"type": "string"
}
}
}Fields§
§category_guid: Option<String>§item_type: Option<f64>§planned_amount: f64§scheduled_payment_guid: Option<String>§top_level_category_guid: Option<String>Trait Implementations§
Source§impl Clone for SpendingPlanIterationItemCreateRequestBody
impl Clone for SpendingPlanIterationItemCreateRequestBody
Source§fn clone(&self) -> SpendingPlanIterationItemCreateRequestBody
fn clone(&self) -> SpendingPlanIterationItemCreateRequestBody
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 SpendingPlanIterationItemCreateRequestBody
impl<'de> Deserialize<'de> for SpendingPlanIterationItemCreateRequestBody
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<&SpendingPlanIterationItemCreateRequestBody> for SpendingPlanIterationItemCreateRequestBody
impl From<&SpendingPlanIterationItemCreateRequestBody> for SpendingPlanIterationItemCreateRequestBody
Source§fn from(value: &SpendingPlanIterationItemCreateRequestBody) -> Self
fn from(value: &SpendingPlanIterationItemCreateRequestBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpendingPlanIterationItemCreateRequestBody
impl RefUnwindSafe for SpendingPlanIterationItemCreateRequestBody
impl Send for SpendingPlanIterationItemCreateRequestBody
impl Sync for SpendingPlanIterationItemCreateRequestBody
impl Unpin for SpendingPlanIterationItemCreateRequestBody
impl UnwindSafe for SpendingPlanIterationItemCreateRequestBody
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