pub struct SpendingPlanAccountResponse {
pub account_guid: Option<String>,
pub client_guid: Option<String>,
pub created_at: Option<String>,
pub guid: Option<String>,
pub spending_plan_guid: Option<String>,
pub updated_at: Option<String>,
pub user_guid: Option<String>,
}Expand description
SpendingPlanAccountResponse
JSON schema
{
"type": "object",
"properties": {
"account_guid": {
"examples": [
"ACT-97d3948f-ebe7-434a-9bd0-20b29d67c9d4"
],
"type": "string"
},
"client_guid": {
"examples": [
"CLT-024284fc-a6a7-42ee-b363-dab9343e3f72"
],
"type": "string"
},
"created_at": {
"examples": [
"2023-04-27T23:14:16Z"
],
"type": "string"
},
"guid": {
"examples": [
"SPA-c76e4a85-b2c4-4335-82b7-8f8b8f28c35a"
],
"type": "string"
},
"spending_plan_guid": {
"examples": [
"SPL-dbfe201d-c341-4bff-93c0-62a918d0b600"
],
"type": "string"
},
"updated_at": {
"examples": [
"2023-04-27T23:14:16Z"
],
"type": "string"
},
"user_guid": {
"examples": [
"USR-72086f59-6684-4adf-8f29-c4d32db43cd7"
],
"type": "string"
}
}
}Fields§
§account_guid: Option<String>§client_guid: Option<String>§created_at: Option<String>§guid: Option<String>§spending_plan_guid: Option<String>§updated_at: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for SpendingPlanAccountResponse
impl Clone for SpendingPlanAccountResponse
Source§fn clone(&self) -> SpendingPlanAccountResponse
fn clone(&self) -> SpendingPlanAccountResponse
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 Debug for SpendingPlanAccountResponse
impl Debug for SpendingPlanAccountResponse
Source§impl<'de> Deserialize<'de> for SpendingPlanAccountResponse
impl<'de> Deserialize<'de> for SpendingPlanAccountResponse
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<&SpendingPlanAccountResponse> for SpendingPlanAccountResponse
impl From<&SpendingPlanAccountResponse> for SpendingPlanAccountResponse
Source§fn from(value: &SpendingPlanAccountResponse) -> Self
fn from(value: &SpendingPlanAccountResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpendingPlanAccountResponse
impl RefUnwindSafe for SpendingPlanAccountResponse
impl Send for SpendingPlanAccountResponse
impl Sync for SpendingPlanAccountResponse
impl Unpin for SpendingPlanAccountResponse
impl UnwindSafe for SpendingPlanAccountResponse
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