pub struct UpdateAppWalletBody {
pub additional_signers: Option<WalletAdditionalSigner>,
pub owner: Option<OwnerInput>,
pub owner_id: Option<OwnerIdInput>,
pub policy_ids: Vec<UpdateAppWalletBodyPolicyIdsItem>,
}Expand description
UpdateAppWalletBody
JSON schema
{
"type": "object",
"properties": {
"additional_signers": {
"$ref": "#/components/schemas/WalletAdditionalSigner"
},
"owner": {
"$ref": "#/components/schemas/OwnerInput"
},
"owner_id": {
"allOf": [
{
"$ref": "#/components/schemas/OwnerIdInput"
},
{}
]
},
"policy_ids": {
"description": "New policy IDs to enforce on the wallet. Currently,
only one policy is supported per wallet.",
"type": "array",
"items": {
"type": "string",
"maxLength": 24,
"minLength": 24
},
"maxItems": 1
}
}
}Fields§
§additional_signers: Option<WalletAdditionalSigner>§owner: Option<OwnerInput>§owner_id: Option<OwnerIdInput>§policy_ids: Vec<UpdateAppWalletBodyPolicyIdsItem>New policy IDs to enforce on the wallet. Currently, only one policy is supported per wallet.
Trait Implementations§
Source§impl Clone for UpdateAppWalletBody
impl Clone for UpdateAppWalletBody
Source§fn clone(&self) -> UpdateAppWalletBody
fn clone(&self) -> UpdateAppWalletBody
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateAppWalletBody
impl Debug for UpdateAppWalletBody
Source§impl Default for UpdateAppWalletBody
impl Default for UpdateAppWalletBody
Source§impl<'de> Deserialize<'de> for UpdateAppWalletBody
impl<'de> Deserialize<'de> for UpdateAppWalletBody
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<&UpdateAppWalletBody> for UpdateAppWalletBody
impl From<&UpdateAppWalletBody> for UpdateAppWalletBody
Source§fn from(value: &UpdateAppWalletBody) -> Self
fn from(value: &UpdateAppWalletBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateAppWalletBody
impl RefUnwindSafe for UpdateAppWalletBody
impl Send for UpdateAppWalletBody
impl Sync for UpdateAppWalletBody
impl Unpin for UpdateAppWalletBody
impl UnsafeUnpin for UpdateAppWalletBody
impl UnwindSafe for UpdateAppWalletBody
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