pub struct OAuthAuthenticateRecoveryResponse {
pub access_token: String,
}Expand description
The response from authenticating with OAuth for recovery.
JSON schema
{
"title": "OAuthAuthenticateRecoveryResponse",
"description": "The response from authenticating with OAuth for
recovery.",
"type": "object",
"required": [
"access_token"
],
"properties": {
"access_token": {
"type": "string"
}
},
"x-stainless-model":
"embedded_wallets.oauth_authenticate_recovery_response"
}Fields§
§access_token: StringTrait Implementations§
Source§impl Clone for OAuthAuthenticateRecoveryResponse
impl Clone for OAuthAuthenticateRecoveryResponse
Source§fn clone(&self) -> OAuthAuthenticateRecoveryResponse
fn clone(&self) -> OAuthAuthenticateRecoveryResponse
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 OAuthAuthenticateRecoveryResponse
impl<'de> Deserialize<'de> for OAuthAuthenticateRecoveryResponse
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<&OAuthAuthenticateRecoveryResponse> for OAuthAuthenticateRecoveryResponse
impl From<&OAuthAuthenticateRecoveryResponse> for OAuthAuthenticateRecoveryResponse
Source§fn from(value: &OAuthAuthenticateRecoveryResponse) -> Self
fn from(value: &OAuthAuthenticateRecoveryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OAuthAuthenticateRecoveryResponse
impl RefUnwindSafe for OAuthAuthenticateRecoveryResponse
impl Send for OAuthAuthenticateRecoveryResponse
impl Sync for OAuthAuthenticateRecoveryResponse
impl Unpin for OAuthAuthenticateRecoveryResponse
impl UnsafeUnpin for OAuthAuthenticateRecoveryResponse
impl UnwindSafe for OAuthAuthenticateRecoveryResponse
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