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