pub struct KrakenEmbedStartLivenessVerificationUrlInput {
pub center_url: String,
pub debug: Option<KrakenEmbedStartVerificationDebug>,
pub left_url: String,
pub right_url: String,
pub type_: KrakenEmbedStartLivenessVerificationUrlInputType,
}Expand description
Input payload for starting proof of liveness verification via URLs.
JSON schema
{
"title": "KrakenEmbedStartLivenessVerificationUrlInput",
"description": "Input payload for starting proof of liveness
verification via URLs.",
"type": "object",
"required": [
"center_url",
"left_url",
"right_url",
"type"
],
"properties": {
"center_url": {
"type": "string",
"format": "uri"
},
"debug": {
"allOf": [
{
"$ref":
"#/components/schemas/KrakenEmbedStartVerificationDebug"
},
{
"type": "object"
}
]
},
"left_url": {
"type": "string",
"format": "uri"
},
"right_url": {
"type": "string",
"format": "uri"
},
"type": {
"type": "string",
"enum": [
"proof_of_liveness"
]
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_start_liveness_verification_url_input"
}Fields§
§center_url: String§debug: Option<KrakenEmbedStartVerificationDebug>§left_url: String§right_url: String§type_: KrakenEmbedStartLivenessVerificationUrlInputTypeTrait Implementations§
Source§impl Clone for KrakenEmbedStartLivenessVerificationUrlInput
impl Clone for KrakenEmbedStartLivenessVerificationUrlInput
Source§fn clone(&self) -> KrakenEmbedStartLivenessVerificationUrlInput
fn clone(&self) -> KrakenEmbedStartLivenessVerificationUrlInput
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 KrakenEmbedStartLivenessVerificationUrlInput
impl<'de> Deserialize<'de> for KrakenEmbedStartLivenessVerificationUrlInput
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<&KrakenEmbedStartLivenessVerificationUrlInput> for KrakenEmbedStartLivenessVerificationUrlInput
impl From<&KrakenEmbedStartLivenessVerificationUrlInput> for KrakenEmbedStartLivenessVerificationUrlInput
Source§fn from(value: &KrakenEmbedStartLivenessVerificationUrlInput) -> Self
fn from(value: &KrakenEmbedStartLivenessVerificationUrlInput) -> 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 KrakenEmbedStartLivenessVerificationUrlInput
impl RefUnwindSafe for KrakenEmbedStartLivenessVerificationUrlInput
impl Send for KrakenEmbedStartLivenessVerificationUrlInput
impl Sync for KrakenEmbedStartLivenessVerificationUrlInput
impl Unpin for KrakenEmbedStartLivenessVerificationUrlInput
impl UnsafeUnpin for KrakenEmbedStartLivenessVerificationUrlInput
impl UnwindSafe for KrakenEmbedStartLivenessVerificationUrlInput
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