pub struct WalletBatchCreateInput {
pub wallets: Vec<WalletBatchItemInput>,
}Expand description
Request body for batch wallet creation.
JSON schema
{
"title": "WalletBatchCreateInput",
"description": "Request body for batch wallet creation.",
"examples": [
{
"wallets": [
{
"chain_type": "ethereum"
},
{
"chain_type": "solana"
}
]
}
],
"type": "object",
"required": [
"wallets"
],
"properties": {
"wallets": {
"description": "Array of wallet creation requests. Minimum 1,
maximum 100.",
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletBatchItemInput"
},
"maxItems": 100,
"minItems": 1
}
},
"x-stainless-model": "wallets.wallet_batch_create_input"
}Fields§
§wallets: Vec<WalletBatchItemInput>Array of wallet creation requests. Minimum 1, maximum 100.
Trait Implementations§
Source§impl Clone for WalletBatchCreateInput
impl Clone for WalletBatchCreateInput
Source§fn clone(&self) -> WalletBatchCreateInput
fn clone(&self) -> WalletBatchCreateInput
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 WalletBatchCreateInput
impl Debug for WalletBatchCreateInput
Source§impl<'de> Deserialize<'de> for WalletBatchCreateInput
impl<'de> Deserialize<'de> for WalletBatchCreateInput
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<&WalletBatchCreateInput> for WalletBatchCreateInput
impl From<&WalletBatchCreateInput> for WalletBatchCreateInput
Source§fn from(value: &WalletBatchCreateInput) -> Self
fn from(value: &WalletBatchCreateInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletBatchCreateInput
impl RefUnwindSafe for WalletBatchCreateInput
impl Send for WalletBatchCreateInput
impl Sync for WalletBatchCreateInput
impl Unpin for WalletBatchCreateInput
impl UnsafeUnpin for WalletBatchCreateInput
impl UnwindSafe for WalletBatchCreateInput
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