pub struct AccountOwnerResponse {Show 14 fields
pub account_guid: Option<String>,
pub address: Option<String>,
pub city: Option<String>,
pub country: Option<String>,
pub email: Option<String>,
pub first_name: Option<String>,
pub guid: Option<String>,
pub last_name: Option<String>,
pub member_guid: Option<String>,
pub owner_name: Option<String>,
pub phone: Option<String>,
pub postal_code: Option<String>,
pub state: Option<String>,
pub user_guid: Option<String>,
}Expand description
AccountOwnerResponse
JSON schema
{
"type": "object",
"properties": {
"account_guid": {
"examples": [
"ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1"
],
"type": [
"string",
"null"
]
},
"address": {
"examples": [
"123 This Way"
],
"type": [
"string",
"null"
]
},
"city": {
"examples": [
"Middlesex"
],
"type": [
"string",
"null"
]
},
"country": {
"examples": [
"US"
],
"type": [
"string",
"null"
]
},
"email": {
"examples": [
"donnie@darko.co"
],
"type": [
"string",
"null"
]
},
"first_name": {
"examples": [
"Donnie"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"ACO-63dc7714-6fc0-4aa2-a069-c06cdccd1af9"
],
"type": [
"string",
"null"
]
},
"last_name": {
"examples": [
"Darko"
],
"type": [
"string",
"null"
]
},
"member_guid": {
"examples": [
"MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"
],
"type": [
"string",
"null"
]
},
"owner_name": {
"examples": [
"Donnie Darko"
],
"type": [
"string",
"null"
]
},
"phone": {
"examples": [
"555-555-5555"
],
"type": [
"string",
"null"
]
},
"postal_code": {
"examples": [
"00000-0000"
],
"type": [
"string",
"null"
]
},
"state": {
"examples": [
"VA"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-fa7537f3-48aa-a683-a02a-b18940482f54"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§account_guid: Option<String>§address: Option<String>§city: Option<String>§country: Option<String>§email: Option<String>§first_name: Option<String>§guid: Option<String>§last_name: Option<String>§member_guid: Option<String>§owner_name: Option<String>§phone: Option<String>§postal_code: Option<String>§state: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for AccountOwnerResponse
impl Clone for AccountOwnerResponse
Source§fn clone(&self) -> AccountOwnerResponse
fn clone(&self) -> AccountOwnerResponse
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 AccountOwnerResponse
impl Debug for AccountOwnerResponse
Source§impl Default for AccountOwnerResponse
impl Default for AccountOwnerResponse
Source§impl<'de> Deserialize<'de> for AccountOwnerResponse
impl<'de> Deserialize<'de> for AccountOwnerResponse
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<&AccountOwnerResponse> for AccountOwnerResponse
impl From<&AccountOwnerResponse> for AccountOwnerResponse
Source§fn from(value: &AccountOwnerResponse) -> Self
fn from(value: &AccountOwnerResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountOwnerResponse
impl RefUnwindSafe for AccountOwnerResponse
impl Send for AccountOwnerResponse
impl Sync for AccountOwnerResponse
impl Unpin for AccountOwnerResponse
impl UnwindSafe for AccountOwnerResponse
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