pub struct UpdateAppKeyQuorumBody {
pub authorization_threshold: Option<f64>,
pub display_name: Option<UpdateAppKeyQuorumBodyDisplayName>,
pub public_keys: Vec<String>,
pub user_ids: Vec<String>,
}Expand description
UpdateAppKeyQuorumBody
JSON schema
{
"type": "object",
"properties": {
"authorization_threshold": {
"description": "The number of keys that must sign for an action to
be valid. Must be less than or equal to total number of key quorum
members.",
"type": "number",
"minimum": 1.0
},
"display_name": {
"type": "string",
"maxLength": 50
},
"public_keys": {
"description": "List of P-256 public keys of the keys that should be authorized to sign on the key quorum, in base64-encoded DER format.",
"type": "array",
"items": {
"type": "string"
}
},
"user_ids": {
"description": "List of user IDs of the users that should be
authorized to sign on the key quorum.",
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§display_name: Option<UpdateAppKeyQuorumBodyDisplayName>§public_keys: Vec<String>List of P-256 public keys of the keys that should be authorized to sign on the key quorum, in base64-encoded DER format.
user_ids: Vec<String>List of user IDs of the users that should be authorized to sign on the key quorum.
Trait Implementations§
Source§impl Clone for UpdateAppKeyQuorumBody
impl Clone for UpdateAppKeyQuorumBody
Source§fn clone(&self) -> UpdateAppKeyQuorumBody
fn clone(&self) -> UpdateAppKeyQuorumBody
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 UpdateAppKeyQuorumBody
impl Debug for UpdateAppKeyQuorumBody
Source§impl Default for UpdateAppKeyQuorumBody
impl Default for UpdateAppKeyQuorumBody
Source§impl<'de> Deserialize<'de> for UpdateAppKeyQuorumBody
impl<'de> Deserialize<'de> for UpdateAppKeyQuorumBody
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<&UpdateAppKeyQuorumBody> for UpdateAppKeyQuorumBody
impl From<&UpdateAppKeyQuorumBody> for UpdateAppKeyQuorumBody
Source§fn from(value: &UpdateAppKeyQuorumBody) -> Self
fn from(value: &UpdateAppKeyQuorumBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateAppKeyQuorumBody
impl RefUnwindSafe for UpdateAppKeyQuorumBody
impl Send for UpdateAppKeyQuorumBody
impl Sync for UpdateAppKeyQuorumBody
impl Unpin for UpdateAppKeyQuorumBody
impl UnsafeUnpin for UpdateAppKeyQuorumBody
impl UnwindSafe for UpdateAppKeyQuorumBody
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