pub enum WalletAuthenticateIntentsResponse {
EncryptedBoundAuthenticateResponse(EncryptedBoundAuthenticateResponse),
RawBoundAuthenticateResponse(RawBoundAuthenticateResponse),
}Expand description
The response from authenticating a wallet with intent bindings, containing an authorization key, wallet data, and the bindings the key is scoped to.
JSON schema
{
"title": "WalletAuthenticateIntentsResponse",
"description": "The response from authenticating a wallet with intent
bindings, containing an authorization key, wallet data, and the bindings
the key is scoped to.",
"oneOf": [
{
"$ref": "#/components/schemas/EncryptedBoundAuthenticateResponse"
},
{
"$ref": "#/components/schemas/RawBoundAuthenticateResponse"
}
],
"x-stainless-model": "wallets.wallet_authenticate_intents_response"
}Variants§
EncryptedBoundAuthenticateResponse(EncryptedBoundAuthenticateResponse)
RawBoundAuthenticateResponse(RawBoundAuthenticateResponse)
Trait Implementations§
Source§impl Clone for WalletAuthenticateIntentsResponse
impl Clone for WalletAuthenticateIntentsResponse
Source§fn clone(&self) -> WalletAuthenticateIntentsResponse
fn clone(&self) -> WalletAuthenticateIntentsResponse
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 WalletAuthenticateIntentsResponse
impl<'de> Deserialize<'de> for WalletAuthenticateIntentsResponse
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<&WalletAuthenticateIntentsResponse> for WalletAuthenticateIntentsResponse
impl From<&WalletAuthenticateIntentsResponse> for WalletAuthenticateIntentsResponse
Source§fn from(value: &WalletAuthenticateIntentsResponse) -> Self
fn from(value: &WalletAuthenticateIntentsResponse) -> Self
Converts to this type from the input type.
Source§impl From<EncryptedBoundAuthenticateResponse> for WalletAuthenticateIntentsResponse
impl From<EncryptedBoundAuthenticateResponse> for WalletAuthenticateIntentsResponse
Source§fn from(value: EncryptedBoundAuthenticateResponse) -> Self
fn from(value: EncryptedBoundAuthenticateResponse) -> Self
Converts to this type from the input type.
Source§impl From<RawBoundAuthenticateResponse> for WalletAuthenticateIntentsResponse
impl From<RawBoundAuthenticateResponse> for WalletAuthenticateIntentsResponse
Source§fn from(value: RawBoundAuthenticateResponse) -> Self
fn from(value: RawBoundAuthenticateResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletAuthenticateIntentsResponse
impl RefUnwindSafe for WalletAuthenticateIntentsResponse
impl Send for WalletAuthenticateIntentsResponse
impl Sync for WalletAuthenticateIntentsResponse
impl Unpin for WalletAuthenticateIntentsResponse
impl UnsafeUnpin for WalletAuthenticateIntentsResponse
impl UnwindSafe for WalletAuthenticateIntentsResponse
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