pub struct TransferSiwsInput {
pub address: String,
pub connector_type: Option<TransferSiwsInputConnectorType>,
pub nonce: String,
pub wallet_client_type: Option<TransferSiwsInputWalletClientType>,
}Expand description
Input for transferring a SIWS account.
JSON schema
{
"title": "TransferSiwsInput",
"description": "Input for transferring a SIWS account.",
"type": "object",
"required": [
"address",
"nonce"
],
"properties": {
"address": {
"type": "string"
},
"connectorType": {
"type": "string",
"maxLength": 64
},
"nonce": {
"type": "string"
},
"walletClientType": {
"type": "string",
"maxLength": 64
}
},
"x-stainless-model": "client_auth.transfer_siws_input"
}Fields§
§address: String§connector_type: Option<TransferSiwsInputConnectorType>§nonce: String§wallet_client_type: Option<TransferSiwsInputWalletClientType>Trait Implementations§
Source§impl Clone for TransferSiwsInput
impl Clone for TransferSiwsInput
Source§fn clone(&self) -> TransferSiwsInput
fn clone(&self) -> TransferSiwsInput
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 TransferSiwsInput
impl Debug for TransferSiwsInput
Source§impl<'de> Deserialize<'de> for TransferSiwsInput
impl<'de> Deserialize<'de> for TransferSiwsInput
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<&TransferSiwsInput> for TransferSiwsInput
impl From<&TransferSiwsInput> for TransferSiwsInput
Source§fn from(value: &TransferSiwsInput) -> Self
fn from(value: &TransferSiwsInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransferSiwsInput
impl RefUnwindSafe for TransferSiwsInput
impl Send for TransferSiwsInput
impl Sync for TransferSiwsInput
impl Unpin for TransferSiwsInput
impl UnsafeUnpin for TransferSiwsInput
impl UnwindSafe for TransferSiwsInput
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