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<CreateUserBodyWalletsItemAdditionalSignersItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateUserBodyWalletsItemAdditionalSignersItem, <__D as Deserializer<'de>>::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,
) -> CreateUserBodyWalletsItemAdditionalSignersItem
fn from( value: &CreateUserBodyWalletsItemAdditionalSignersItem, ) -> CreateUserBodyWalletsItemAdditionalSignersItem
Converts to this type from the input type.
Source§impl Serialize for CreateUserBodyWalletsItemAdditionalSignersItem
impl Serialize for CreateUserBodyWalletsItemAdditionalSignersItem
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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