pub struct WalletInviteInput {
pub type_: WalletInviteInputType,
pub value: WalletInviteInputValue,
}Expand description
Allowlist invite input for a wallet address.
JSON schema
{
"title": "WalletInviteInput",
"description": "Allowlist invite input for a wallet address.",
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"wallet"
]
},
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"x-stainless-model": "apps.wallet_invite_input"
}Fields§
§type_: WalletInviteInputType§value: WalletInviteInputValueTrait Implementations§
Source§impl Clone for WalletInviteInput
impl Clone for WalletInviteInput
Source§fn clone(&self) -> WalletInviteInput
fn clone(&self) -> WalletInviteInput
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 WalletInviteInput
impl Debug for WalletInviteInput
Source§impl<'de> Deserialize<'de> for WalletInviteInput
impl<'de> Deserialize<'de> for WalletInviteInput
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<&WalletInviteInput> for WalletInviteInput
impl From<&WalletInviteInput> for WalletInviteInput
Source§fn from(value: &WalletInviteInput) -> Self
fn from(value: &WalletInviteInput) -> Self
Converts to this type from the input type.
Source§impl From<WalletInviteInput> for UserInviteInput
impl From<WalletInviteInput> for UserInviteInput
Source§fn from(value: WalletInviteInput) -> Self
fn from(value: WalletInviteInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletInviteInput
impl RefUnwindSafe for WalletInviteInput
impl Send for WalletInviteInput
impl Sync for WalletInviteInput
impl Unpin for WalletInviteInput
impl UnsafeUnpin for WalletInviteInput
impl UnwindSafe for WalletInviteInput
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