pub struct WalletApiRevokeAuthorizationKeyInput {
pub id: String,
}Expand description
Input for revoking an application authorization key.
JSON schema
{
"title": "WalletApiRevokeAuthorizationKeyInput",
"description": "Input for revoking an application authorization key.",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
}
},
"x-stainless-model":
"wallets.wallet_api_revoke_authorization_key_input"
}Fields§
§id: StringTrait Implementations§
Source§impl Clone for WalletApiRevokeAuthorizationKeyInput
impl Clone for WalletApiRevokeAuthorizationKeyInput
Source§fn clone(&self) -> WalletApiRevokeAuthorizationKeyInput
fn clone(&self) -> WalletApiRevokeAuthorizationKeyInput
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<'de> Deserialize<'de> for WalletApiRevokeAuthorizationKeyInput
impl<'de> Deserialize<'de> for WalletApiRevokeAuthorizationKeyInput
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<&WalletApiRevokeAuthorizationKeyInput> for WalletApiRevokeAuthorizationKeyInput
impl From<&WalletApiRevokeAuthorizationKeyInput> for WalletApiRevokeAuthorizationKeyInput
Source§fn from(value: &WalletApiRevokeAuthorizationKeyInput) -> Self
fn from(value: &WalletApiRevokeAuthorizationKeyInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletApiRevokeAuthorizationKeyInput
impl RefUnwindSafe for WalletApiRevokeAuthorizationKeyInput
impl Send for WalletApiRevokeAuthorizationKeyInput
impl Sync for WalletApiRevokeAuthorizationKeyInput
impl Unpin for WalletApiRevokeAuthorizationKeyInput
impl UnsafeUnpin for WalletApiRevokeAuthorizationKeyInput
impl UnwindSafe for WalletApiRevokeAuthorizationKeyInput
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