pub struct ConditionSet {
pub created_at: f64,
pub id: ConditionSetId,
pub name: ConditionSetName,
pub owner_id: String,
}Expand description
ConditionSet
JSON schema
{
"examples": [
{
"created_at": 1761271537642,
"id": "qvah5m2hmp9abqlxdmfiht95",
"name": "Approved Recipients",
"owner_id": "asgkan0r7gi0wdbvf9cw8qio"
}
],
"type": "object",
"required": [
"created_at",
"id",
"name",
"owner_id"
],
"properties": {
"created_at": {
"description": "Unix timestamp of when the condition set was
created in milliseconds.",
"type": "number"
},
"id": {
"description": "Unique ID of the created condition set. This will be the primary identifier when using the condition set in the future.",
"type": "string",
"maxLength": 24,
"minLength": 24
},
"name": {
"description": "Name of the condition set.",
"type": "string",
"maxLength": 100,
"minLength": 1
},
"owner_id": {
"description": "The key quorum ID of the owner of the condition
set.",
"type": "string"
}
}
}Fields§
§created_at: f64§id: ConditionSetIdUnique ID of the created condition set. This will be the primary identifier when using the condition set in the future.
name: ConditionSetNameName of the condition set.
owner_id: StringThe key quorum ID of the owner of the condition set.
Trait Implementations§
Source§impl Clone for ConditionSet
impl Clone for ConditionSet
Source§fn clone(&self) -> ConditionSet
fn clone(&self) -> ConditionSet
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 ConditionSet
impl Debug for ConditionSet
Source§impl<'de> Deserialize<'de> for ConditionSet
impl<'de> Deserialize<'de> for ConditionSet
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConditionSet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConditionSet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&ConditionSet> for ConditionSet
impl From<&ConditionSet> for ConditionSet
Source§fn from(value: &ConditionSet) -> ConditionSet
fn from(value: &ConditionSet) -> ConditionSet
Converts to this type from the input type.
Source§impl Serialize for ConditionSet
impl Serialize for ConditionSet
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 ConditionSet
impl RefUnwindSafe for ConditionSet
impl Send for ConditionSet
impl Sync for ConditionSet
impl Unpin for ConditionSet
impl UnwindSafe for ConditionSet
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