pub struct CreateUserBodyWalletsItemAdditionalSignersItem {
pub override_policy_ids: Vec<CreateUserBodyWalletsItemAdditionalSignersItemOverridePolicyIdsItem>,
pub signer_id: String,
}Expand description
CreateUserBodyWalletsItemAdditionalSignersItem
JSON schema
{
"type": "object",
"required": [
"signer_id"
],
"properties": {
"override_policy_ids": {
"description": "The array of policy IDs that will be applied to wallet requests. If specified, this will override the base policy IDs set on the wallet. Currently, only one policy is supported per signer.",
"type": "array",
"items": {
"type": "string",
"maxLength": 24,
"minLength": 24
}
},
"signer_id": {
"description": "The key quorum ID for the signer.",
"type": "string"
}
}
}Fields§
§override_policy_ids: Vec<CreateUserBodyWalletsItemAdditionalSignersItemOverridePolicyIdsItem>The array of policy IDs that will be applied to wallet requests. If specified, this will override the base policy IDs set on the wallet. Currently, only one policy is supported per signer.
signer_id: StringThe key quorum ID for the signer.
Trait Implementations§
Source§impl Clone for CreateUserBodyWalletsItemAdditionalSignersItem
impl Clone for CreateUserBodyWalletsItemAdditionalSignersItem
Source§fn clone(&self) -> CreateUserBodyWalletsItemAdditionalSignersItem
fn clone(&self) -> CreateUserBodyWalletsItemAdditionalSignersItem
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<'de> Deserialize<'de> for CreateUserBodyWalletsItemAdditionalSignersItem
impl<'de> Deserialize<'de> for CreateUserBodyWalletsItemAdditionalSignersItem
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<&CreateUserBodyWalletsItemAdditionalSignersItem> for CreateUserBodyWalletsItemAdditionalSignersItem
impl From<&CreateUserBodyWalletsItemAdditionalSignersItem> for CreateUserBodyWalletsItemAdditionalSignersItem
Source§fn from(value: &CreateUserBodyWalletsItemAdditionalSignersItem) -> Self
fn from(value: &CreateUserBodyWalletsItemAdditionalSignersItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateUserBodyWalletsItemAdditionalSignersItem
impl RefUnwindSafe for CreateUserBodyWalletsItemAdditionalSignersItem
impl Send for CreateUserBodyWalletsItemAdditionalSignersItem
impl Sync for CreateUserBodyWalletsItemAdditionalSignersItem
impl Unpin for CreateUserBodyWalletsItemAdditionalSignersItem
impl UnwindSafe for CreateUserBodyWalletsItemAdditionalSignersItem
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