pub struct StatementResponse {
pub account_guid: Option<String>,
pub content_hash: Option<String>,
pub created_at: Option<String>,
pub guid: Option<String>,
pub member_guid: Option<String>,
pub updated_at: Option<String>,
pub uri: Option<String>,
pub user_guid: Option<String>,
}Expand description
StatementResponse
JSON schema
{
"type": "object",
"properties": {
"account_guid": {
"examples": [
"ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1"
],
"type": [
"string",
"null"
]
},
"content_hash": {
"examples": [
"ca53785b812d00ef821c3d94bfd6e5bbc0020504410589b7ea8552169f021981"
],
"type": [
"string",
"null"
]
},
"created_at": {
"examples": [
"2016-10-13T18:08:00+00:00"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"STA-737a344b-caae-0f6e-1384-01f52e75dcb1"
],
"type": [
"string",
"null"
]
},
"member_guid": {
"examples": [
"MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"
],
"type": [
"string",
"null"
]
},
"updated_at": {
"examples": [
"2016-10-13T18:09:00+00:00"
],
"type": [
"string",
"null"
]
},
"uri": {
"examples": [
"uri/to/statement"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-fa7537f3-48aa-a683-a02a-b18940482f54"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§account_guid: Option<String>§content_hash: Option<String>§created_at: Option<String>§guid: Option<String>§member_guid: Option<String>§updated_at: Option<String>§uri: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for StatementResponse
impl Clone for StatementResponse
Source§fn clone(&self) -> StatementResponse
fn clone(&self) -> StatementResponse
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 StatementResponse
impl Debug for StatementResponse
Source§impl Default for StatementResponse
impl Default for StatementResponse
Source§impl<'de> Deserialize<'de> for StatementResponse
impl<'de> Deserialize<'de> for StatementResponse
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<&StatementResponse> for StatementResponse
impl From<&StatementResponse> for StatementResponse
Source§fn from(value: &StatementResponse) -> Self
fn from(value: &StatementResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StatementResponse
impl RefUnwindSafe for StatementResponse
impl Send for StatementResponse
impl Sync for StatementResponse
impl Unpin for StatementResponse
impl UnwindSafe for StatementResponse
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