pub struct KrakenEmbedStartAddressVerificationUrlInput {
pub debug: Option<KrakenEmbedStartVerificationDebug>,
pub document_url: String,
pub metadata: Option<KrakenEmbedStartAddressMetadata>,
pub type_: KrakenEmbedStartAddressVerificationUrlInputType,
}Expand description
Input payload for starting proof of address verification via URL.
JSON schema
{
"title": "KrakenEmbedStartAddressVerificationUrlInput",
"description": "Input payload for starting proof of address
verification via URL.",
"type": "object",
"required": [
"document_url",
"type"
],
"properties": {
"debug": {
"allOf": [
{
"$ref":
"#/components/schemas/KrakenEmbedStartVerificationDebug"
},
{
"type": "object"
}
]
},
"document_url": {
"type": "string",
"format": "uri"
},
"metadata": {
"allOf": [
{
"$ref": "#/components/schemas/KrakenEmbedStartAddressMetadata"
},
{
"type": "object"
}
]
},
"type": {
"type": "string",
"enum": [
"proof_of_address"
]
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_start_address_verification_url_input"
}Fields§
§debug: Option<KrakenEmbedStartVerificationDebug>§document_url: String§metadata: Option<KrakenEmbedStartAddressMetadata>§type_: KrakenEmbedStartAddressVerificationUrlInputTypeTrait Implementations§
Source§impl Clone for KrakenEmbedStartAddressVerificationUrlInput
impl Clone for KrakenEmbedStartAddressVerificationUrlInput
Source§fn clone(&self) -> KrakenEmbedStartAddressVerificationUrlInput
fn clone(&self) -> KrakenEmbedStartAddressVerificationUrlInput
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 KrakenEmbedStartAddressVerificationUrlInput
impl<'de> Deserialize<'de> for KrakenEmbedStartAddressVerificationUrlInput
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<&KrakenEmbedStartAddressVerificationUrlInput> for KrakenEmbedStartAddressVerificationUrlInput
impl From<&KrakenEmbedStartAddressVerificationUrlInput> for KrakenEmbedStartAddressVerificationUrlInput
Source§fn from(value: &KrakenEmbedStartAddressVerificationUrlInput) -> Self
fn from(value: &KrakenEmbedStartAddressVerificationUrlInput) -> 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.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartAddressVerificationUrlInput
impl RefUnwindSafe for KrakenEmbedStartAddressVerificationUrlInput
impl Send for KrakenEmbedStartAddressVerificationUrlInput
impl Sync for KrakenEmbedStartAddressVerificationUrlInput
impl Unpin for KrakenEmbedStartAddressVerificationUrlInput
impl UnsafeUnpin for KrakenEmbedStartAddressVerificationUrlInput
impl UnwindSafe for KrakenEmbedStartAddressVerificationUrlInput
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