pub struct ProcessorOwnerBodyAccountOwnersItem {
pub account_guid: Option<String>,
pub address: Option<Value>,
pub city: Option<Value>,
pub country: Option<Value>,
pub email: Option<Value>,
pub guid: Option<Value>,
pub member_guid: Option<String>,
pub owner_name: Option<Value>,
pub phone: Option<Value>,
pub postal_code: Option<Value>,
pub state: Option<Value>,
pub user_guid: Option<String>,
}Expand description
ProcessorOwnerBodyAccountOwnersItem
JSON schema
{
"allOf": [
{
"$ref": "#/components/schemas/MemberElements"
},
{
"$ref": "#/components/schemas/ProcessorOwner"
}
]
}Fields§
§account_guid: Option<String>§address: Option<Value>§city: Option<Value>§country: Option<Value>§email: Option<Value>§guid: Option<Value>§member_guid: Option<String>§owner_name: Option<Value>§phone: Option<Value>§postal_code: Option<Value>§state: Option<Value>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for ProcessorOwnerBodyAccountOwnersItem
impl Clone for ProcessorOwnerBodyAccountOwnersItem
Source§fn clone(&self) -> ProcessorOwnerBodyAccountOwnersItem
fn clone(&self) -> ProcessorOwnerBodyAccountOwnersItem
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 ProcessorOwnerBodyAccountOwnersItem
impl<'de> Deserialize<'de> for ProcessorOwnerBodyAccountOwnersItem
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<&ProcessorOwnerBodyAccountOwnersItem> for ProcessorOwnerBodyAccountOwnersItem
impl From<&ProcessorOwnerBodyAccountOwnersItem> for ProcessorOwnerBodyAccountOwnersItem
Source§fn from(value: &ProcessorOwnerBodyAccountOwnersItem) -> Self
fn from(value: &ProcessorOwnerBodyAccountOwnersItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProcessorOwnerBodyAccountOwnersItem
impl RefUnwindSafe for ProcessorOwnerBodyAccountOwnersItem
impl Send for ProcessorOwnerBodyAccountOwnersItem
impl Sync for ProcessorOwnerBodyAccountOwnersItem
impl Unpin for ProcessorOwnerBodyAccountOwnersItem
impl UnwindSafe for ProcessorOwnerBodyAccountOwnersItem
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