pub struct SubmitUserVerificationFromUrlResponse {
pub data: SubmitUserVerificationFromUrlResponseData,
}Expand description
SubmitUserVerificationFromUrlResponse
JSON schema
{
"examples": [
{
"data": {
"result": {
"verification_id": "verif_abc123def456"
}
}
}
],
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"result"
],
"properties": {
"result": {
"type": "object",
"required": [
"verification_id"
],
"properties": {
"verification_id": {
"type": "string"
}
}
}
}
}
}
}Fields§
§data: SubmitUserVerificationFromUrlResponseDataTrait Implementations§
Source§impl Clone for SubmitUserVerificationFromUrlResponse
impl Clone for SubmitUserVerificationFromUrlResponse
Source§fn clone(&self) -> SubmitUserVerificationFromUrlResponse
fn clone(&self) -> SubmitUserVerificationFromUrlResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 SubmitUserVerificationFromUrlResponse
impl<'de> Deserialize<'de> for SubmitUserVerificationFromUrlResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SubmitUserVerificationFromUrlResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SubmitUserVerificationFromUrlResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&SubmitUserVerificationFromUrlResponse> for SubmitUserVerificationFromUrlResponse
impl From<&SubmitUserVerificationFromUrlResponse> for SubmitUserVerificationFromUrlResponse
Source§fn from(
value: &SubmitUserVerificationFromUrlResponse,
) -> SubmitUserVerificationFromUrlResponse
fn from( value: &SubmitUserVerificationFromUrlResponse, ) -> SubmitUserVerificationFromUrlResponse
Converts to this type from the input type.
Source§impl Serialize for SubmitUserVerificationFromUrlResponse
impl Serialize for SubmitUserVerificationFromUrlResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SubmitUserVerificationFromUrlResponse
impl RefUnwindSafe for SubmitUserVerificationFromUrlResponse
impl Send for SubmitUserVerificationFromUrlResponse
impl Sync for SubmitUserVerificationFromUrlResponse
impl Unpin for SubmitUserVerificationFromUrlResponse
impl UnwindSafe for SubmitUserVerificationFromUrlResponse
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