pub struct EncryptedBoundAuthenticateResponse {
pub bindings: Vec<UserSigningKeyBinding>,
pub encrypted_authorization_key: EncryptedAuthorizationKey,
pub expires_at: f64,
pub wallets: Vec<Wallet>,
}Expand description
Encrypted response from bound wallet authentication, with bindings.
JSON schema
{
"title": "EncryptedBoundAuthenticateResponse",
"description": "Encrypted response from bound wallet authentication,
with bindings.",
"type": "object",
"required": [
"bindings",
"encrypted_authorization_key",
"expires_at",
"wallets"
],
"properties": {
"bindings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UserSigningKeyBinding"
}
},
"encrypted_authorization_key": {
"$ref": "#/components/schemas/EncryptedAuthorizationKey"
},
"expires_at": {
"type": "number"
},
"wallets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Wallet"
}
}
},
"x-stainless-model": "wallets.encrypted_bound_authenticate_response"
}Fields§
§bindings: Vec<UserSigningKeyBinding>§expires_at: f64§wallets: Vec<Wallet>Trait Implementations§
Source§impl Clone for EncryptedBoundAuthenticateResponse
impl Clone for EncryptedBoundAuthenticateResponse
Source§fn clone(&self) -> EncryptedBoundAuthenticateResponse
fn clone(&self) -> EncryptedBoundAuthenticateResponse
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 EncryptedBoundAuthenticateResponse
impl<'de> Deserialize<'de> for EncryptedBoundAuthenticateResponse
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<&EncryptedBoundAuthenticateResponse> for EncryptedBoundAuthenticateResponse
impl From<&EncryptedBoundAuthenticateResponse> for EncryptedBoundAuthenticateResponse
Source§fn from(value: &EncryptedBoundAuthenticateResponse) -> Self
fn from(value: &EncryptedBoundAuthenticateResponse) -> 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.
Auto Trait Implementations§
impl Freeze for EncryptedBoundAuthenticateResponse
impl RefUnwindSafe for EncryptedBoundAuthenticateResponse
impl Send for EncryptedBoundAuthenticateResponse
impl Sync for EncryptedBoundAuthenticateResponse
impl Unpin for EncryptedBoundAuthenticateResponse
impl UnsafeUnpin for EncryptedBoundAuthenticateResponse
impl UnwindSafe for EncryptedBoundAuthenticateResponse
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