pub struct GetUserFiatKycLinkBody {
pub email: String,
pub endorsements: Vec<GetUserFiatKycLinkBodyEndorsementsItem>,
pub full_name: Option<String>,
pub provider: GetUserFiatKycLinkBodyProvider,
pub redirect_uri: Option<String>,
pub type_: Option<GetUserFiatKycLinkBodyType>,
}Expand description
GetUserFiatKycLinkBody
JSON schema
{
"type": "object",
"required": [
"email",
"provider"
],
"properties": {
"email": {
"type": "string",
"format": "email"
},
"endorsements": {
"type": "array",
"items": {
"type": "string",
"enum": [
"sepa"
]
}
},
"full_name": {
"type": "string"
},
"provider": {
"type": "string",
"enum": [
"bridge",
"bridge-sandbox"
]
},
"redirect_uri": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"business",
"individual"
]
}
}
}Fields§
§email: String§endorsements: Vec<GetUserFiatKycLinkBodyEndorsementsItem>§full_name: Option<String>§provider: GetUserFiatKycLinkBodyProvider§redirect_uri: Option<String>§type_: Option<GetUserFiatKycLinkBodyType>Trait Implementations§
Source§impl Clone for GetUserFiatKycLinkBody
impl Clone for GetUserFiatKycLinkBody
Source§fn clone(&self) -> GetUserFiatKycLinkBody
fn clone(&self) -> GetUserFiatKycLinkBody
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 GetUserFiatKycLinkBody
impl Debug for GetUserFiatKycLinkBody
Source§impl<'de> Deserialize<'de> for GetUserFiatKycLinkBody
impl<'de> Deserialize<'de> for GetUserFiatKycLinkBody
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetUserFiatKycLinkBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetUserFiatKycLinkBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&GetUserFiatKycLinkBody> for GetUserFiatKycLinkBody
impl From<&GetUserFiatKycLinkBody> for GetUserFiatKycLinkBody
Source§fn from(value: &GetUserFiatKycLinkBody) -> GetUserFiatKycLinkBody
fn from(value: &GetUserFiatKycLinkBody) -> GetUserFiatKycLinkBody
Converts to this type from the input type.
Source§impl Serialize for GetUserFiatKycLinkBody
impl Serialize for GetUserFiatKycLinkBody
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for GetUserFiatKycLinkBody
impl RefUnwindSafe for GetUserFiatKycLinkBody
impl Send for GetUserFiatKycLinkBody
impl Sync for GetUserFiatKycLinkBody
impl Unpin for GetUserFiatKycLinkBody
impl UnwindSafe for GetUserFiatKycLinkBody
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