pub struct KrakenEmbedStartIdentityVerificationUrlInput {
pub back_url: Option<String>,
pub debug: Option<KrakenEmbedStartVerificationDebug>,
pub front_url: String,
pub metadata: Option<KrakenEmbedStartIdentityMetadata>,
pub type_: KrakenEmbedStartIdentityVerificationUrlInputType,
}Expand description
Input payload for starting proof of identity verification via URLs.
JSON schema
{
"title": "KrakenEmbedStartIdentityVerificationUrlInput",
"description": "Input payload for starting proof of identity
verification via URLs.",
"type": "object",
"required": [
"front_url",
"type"
],
"properties": {
"back_url": {
"type": "string",
"format": "uri"
},
"debug": {
"allOf": [
{
"$ref":
"#/components/schemas/KrakenEmbedStartVerificationDebug"
},
{
"type": "object"
}
]
},
"front_url": {
"type": "string",
"format": "uri"
},
"metadata": {
"allOf": [
{
"$ref": "#/components/schemas/KrakenEmbedStartIdentityMetadata"
},
{
"type": "object"
}
]
},
"type": {
"type": "string",
"enum": [
"proof_of_identity"
]
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_start_identity_verification_url_input"
}Fields§
§back_url: Option<String>§debug: Option<KrakenEmbedStartVerificationDebug>§front_url: String§metadata: Option<KrakenEmbedStartIdentityMetadata>§type_: KrakenEmbedStartIdentityVerificationUrlInputTypeTrait Implementations§
Source§impl Clone for KrakenEmbedStartIdentityVerificationUrlInput
impl Clone for KrakenEmbedStartIdentityVerificationUrlInput
Source§fn clone(&self) -> KrakenEmbedStartIdentityVerificationUrlInput
fn clone(&self) -> KrakenEmbedStartIdentityVerificationUrlInput
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<'de> Deserialize<'de> for KrakenEmbedStartIdentityVerificationUrlInput
impl<'de> Deserialize<'de> for KrakenEmbedStartIdentityVerificationUrlInput
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<&KrakenEmbedStartIdentityVerificationUrlInput> for KrakenEmbedStartIdentityVerificationUrlInput
impl From<&KrakenEmbedStartIdentityVerificationUrlInput> for KrakenEmbedStartIdentityVerificationUrlInput
Source§fn from(value: &KrakenEmbedStartIdentityVerificationUrlInput) -> Self
fn from(value: &KrakenEmbedStartIdentityVerificationUrlInput) -> Self
Converts to this type from the input type.
Source§impl From<KrakenEmbedStartIdentityVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
impl From<KrakenEmbedStartIdentityVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
Source§fn from(value: KrakenEmbedStartIdentityVerificationUrlInput) -> Self
fn from(value: KrakenEmbedStartIdentityVerificationUrlInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartIdentityVerificationUrlInput
impl RefUnwindSafe for KrakenEmbedStartIdentityVerificationUrlInput
impl Send for KrakenEmbedStartIdentityVerificationUrlInput
impl Sync for KrakenEmbedStartIdentityVerificationUrlInput
impl Unpin for KrakenEmbedStartIdentityVerificationUrlInput
impl UnsafeUnpin for KrakenEmbedStartIdentityVerificationUrlInput
impl UnwindSafe for KrakenEmbedStartIdentityVerificationUrlInput
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