pub struct SpendingPlanIterationResponse {
pub created_at: Option<String>,
pub end_on: Option<String>,
pub guid: Option<String>,
pub iteration_number: Option<i64>,
pub spending_plan_guid: Option<String>,
pub start_on: Option<String>,
pub updated_at: Option<String>,
pub user_guid: Option<String>,
}Expand description
SpendingPlanIterationResponse
JSON schema
{
"type": "object",
"properties": {
"created_at": {
"examples": [
"2016-10-13T18:08:00+00:00"
],
"type": [
"string",
"null"
]
},
"end_on": {
"examples": [
"2023-05-31"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"SPI-848e6648-3fa3-4632-ac8f-e65f03167102"
],
"type": [
"string",
"null"
]
},
"iteration_number": {
"examples": [
1
],
"type": [
"integer",
"null"
]
},
"spending_plan_guid": {
"examples": [
"SPL-dbfe201d-c341-4bff-93c0-62a918d0b600"
],
"type": [
"string",
"null"
]
},
"start_on": {
"examples": [
"2023-05-01"
],
"type": [
"string",
"null"
]
},
"updated_at": {
"examples": [
"2016-10-13T18:09:00+00:00"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-72086f59-6684-4adf-8f29-c4d32db43cd7"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§created_at: Option<String>§end_on: Option<String>§guid: Option<String>§iteration_number: Option<i64>§spending_plan_guid: Option<String>§start_on: Option<String>§updated_at: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for SpendingPlanIterationResponse
impl Clone for SpendingPlanIterationResponse
Source§fn clone(&self) -> SpendingPlanIterationResponse
fn clone(&self) -> SpendingPlanIterationResponse
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 SpendingPlanIterationResponse
impl<'de> Deserialize<'de> for SpendingPlanIterationResponse
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<&SpendingPlanIterationResponse> for SpendingPlanIterationResponse
impl From<&SpendingPlanIterationResponse> for SpendingPlanIterationResponse
Source§fn from(value: &SpendingPlanIterationResponse) -> Self
fn from(value: &SpendingPlanIterationResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpendingPlanIterationResponse
impl RefUnwindSafe for SpendingPlanIterationResponse
impl Send for SpendingPlanIterationResponse
impl Sync for SpendingPlanIterationResponse
impl Unpin for SpendingPlanIterationResponse
impl UnwindSafe for SpendingPlanIterationResponse
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