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