pub struct KrakenEmbedStartIdentityInfo {
pub date_of_birth: Option<NaiveDate>,
pub full_name: Option<KrakenEmbedStartIdentityInfoFullName>,
}Expand description
Identity information hints including full name and date of birth for proof of identity verification.
JSON schema
{
"title": "KrakenEmbedStartIdentityInfo",
"description": "Identity information hints including full name and date
of birth for proof of identity verification.",
"type": "object",
"properties": {
"date_of_birth": {
"type": "string",
"format": "date"
},
"full_name": {
"type": "object",
"required": [
"first_name",
"last_name"
],
"properties": {
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"middle_name": {
"type": "string"
}
}
}
},
"x-stainless-model": "kraken_embed.kraken_embed_start_identity_info"
}Fields§
§date_of_birth: Option<NaiveDate>§full_name: Option<KrakenEmbedStartIdentityInfoFullName>Trait Implementations§
Source§impl Clone for KrakenEmbedStartIdentityInfo
impl Clone for KrakenEmbedStartIdentityInfo
Source§fn clone(&self) -> KrakenEmbedStartIdentityInfo
fn clone(&self) -> KrakenEmbedStartIdentityInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KrakenEmbedStartIdentityInfo
impl Debug for KrakenEmbedStartIdentityInfo
Source§impl<'de> Deserialize<'de> for KrakenEmbedStartIdentityInfo
impl<'de> Deserialize<'de> for KrakenEmbedStartIdentityInfo
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<&KrakenEmbedStartIdentityInfo> for KrakenEmbedStartIdentityInfo
impl From<&KrakenEmbedStartIdentityInfo> for KrakenEmbedStartIdentityInfo
Source§fn from(value: &KrakenEmbedStartIdentityInfo) -> Self
fn from(value: &KrakenEmbedStartIdentityInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartIdentityInfo
impl RefUnwindSafe for KrakenEmbedStartIdentityInfo
impl Send for KrakenEmbedStartIdentityInfo
impl Sync for KrakenEmbedStartIdentityInfo
impl Unpin for KrakenEmbedStartIdentityInfo
impl UnsafeUnpin for KrakenEmbedStartIdentityInfo
impl UnwindSafe for KrakenEmbedStartIdentityInfo
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