pub enum KrakenEmbedStartVerificationUrlInput {
IdentityVerificationUrlInput(KrakenEmbedStartIdentityVerificationUrlInput),
AddressVerificationUrlInput(KrakenEmbedStartAddressVerificationUrlInput),
LivenessVerificationUrlInput(KrakenEmbedStartLivenessVerificationUrlInput),
}Expand description
Discriminated union of all start verification URL input types.
JSON schema
{
"title": "KrakenEmbedStartVerificationUrlInput",
"description": "Discriminated union of all start verification URL input
types.",
"oneOf": [
{
"$ref":
"#/components/schemas/KrakenEmbedStartIdentityVerificationUrlInput"
},
{
"$ref":
"#/components/schemas/KrakenEmbedStartAddressVerificationUrlInput"
},
{
"$ref":
"#/components/schemas/KrakenEmbedStartLivenessVerificationUrlInput"
}
],
"x-stainless-model":
"kraken_embed.kraken_embed_start_verification_url_input"
}Variants§
IdentityVerificationUrlInput(KrakenEmbedStartIdentityVerificationUrlInput)
AddressVerificationUrlInput(KrakenEmbedStartAddressVerificationUrlInput)
LivenessVerificationUrlInput(KrakenEmbedStartLivenessVerificationUrlInput)
Trait Implementations§
Source§impl Clone for KrakenEmbedStartVerificationUrlInput
impl Clone for KrakenEmbedStartVerificationUrlInput
Source§fn clone(&self) -> KrakenEmbedStartVerificationUrlInput
fn clone(&self) -> KrakenEmbedStartVerificationUrlInput
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 KrakenEmbedStartVerificationUrlInput
impl<'de> Deserialize<'de> for KrakenEmbedStartVerificationUrlInput
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<&KrakenEmbedStartVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
impl From<&KrakenEmbedStartVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
Source§fn from(value: &KrakenEmbedStartVerificationUrlInput) -> Self
fn from(value: &KrakenEmbedStartVerificationUrlInput) -> Self
Converts to this type from the input type.
Source§impl From<KrakenEmbedStartAddressVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
impl From<KrakenEmbedStartAddressVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
Source§fn from(value: KrakenEmbedStartAddressVerificationUrlInput) -> Self
fn from(value: KrakenEmbedStartAddressVerificationUrlInput) -> 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.
Source§impl From<KrakenEmbedStartLivenessVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
impl From<KrakenEmbedStartLivenessVerificationUrlInput> for KrakenEmbedStartVerificationUrlInput
Source§fn from(value: KrakenEmbedStartLivenessVerificationUrlInput) -> Self
fn from(value: KrakenEmbedStartLivenessVerificationUrlInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartVerificationUrlInput
impl RefUnwindSafe for KrakenEmbedStartVerificationUrlInput
impl Send for KrakenEmbedStartVerificationUrlInput
impl Sync for KrakenEmbedStartVerificationUrlInput
impl Unpin for KrakenEmbedStartVerificationUrlInput
impl UnsafeUnpin for KrakenEmbedStartVerificationUrlInput
impl UnwindSafe for KrakenEmbedStartVerificationUrlInput
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