pub struct KeyQuorumIntentResponseActionResult {
pub authorized_by_display_name: Option<String>,
pub authorized_by_id: Option<String>,
pub executed_at: f64,
pub prior_state: KeyQuorum,
pub response_body: KeyQuorum,
pub status_code: f64,
}Expand description
Result of key quorum update execution (only present if status is ‘executed’ or ‘failed’)
JSON schema
{
"description": "Result of key quorum update execution (only present if
status is 'executed' or 'failed')",
"type": "object",
"required": [
"executed_at",
"prior_state",
"response_body",
"status_code"
],
"properties": {
"authorized_by_display_name": {
"description": "Display name of the key quorum that authorized
execution",
"type": "string"
},
"authorized_by_id": {
"description": "ID of the key quorum that authorized execution",
"type": "string"
},
"executed_at": {
"description": "Unix timestamp when the action was executed",
"type": "number"
},
"prior_state": {
"allOf": [
{
"$ref": "#/components/schemas/KeyQuorum"
},
{
"description": "State of the key quorum immediately before
execution"
}
]
},
"response_body": {
"$ref": "#/components/schemas/KeyQuorum"
},
"status_code": {
"description": "HTTP status code from the action execution",
"type": "number"
}
}
}Fields§
Display name of the key quorum that authorized execution
ID of the key quorum that authorized execution
executed_at: f64§prior_state: KeyQuorum§response_body: KeyQuorum§status_code: f64Trait Implementations§
Source§impl Clone for KeyQuorumIntentResponseActionResult
impl Clone for KeyQuorumIntentResponseActionResult
Source§fn clone(&self) -> KeyQuorumIntentResponseActionResult
fn clone(&self) -> KeyQuorumIntentResponseActionResult
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 KeyQuorumIntentResponseActionResult
impl<'de> Deserialize<'de> for KeyQuorumIntentResponseActionResult
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<&KeyQuorumIntentResponseActionResult> for KeyQuorumIntentResponseActionResult
impl From<&KeyQuorumIntentResponseActionResult> for KeyQuorumIntentResponseActionResult
Source§fn from(value: &KeyQuorumIntentResponseActionResult) -> Self
fn from(value: &KeyQuorumIntentResponseActionResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KeyQuorumIntentResponseActionResult
impl RefUnwindSafe for KeyQuorumIntentResponseActionResult
impl Send for KeyQuorumIntentResponseActionResult
impl Sync for KeyQuorumIntentResponseActionResult
impl Unpin for KeyQuorumIntentResponseActionResult
impl UnsafeUnpin for KeyQuorumIntentResponseActionResult
impl UnwindSafe for KeyQuorumIntentResponseActionResult
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