pub struct ConditionSetItem {
pub condition_set_id: ConditionSetItemConditionSetId,
pub created_at: f64,
pub id: ConditionSetItemId,
pub value: String,
}Expand description
ConditionSetItem
JSON schema
{
"examples": [
{
"condition_set_id": "qvah5m2hmp9abqlxdmfiht95",
"created_at": 1761271537642,
"id": "abc123xyz456def789ghi012",
"value": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
}
],
"type": "object",
"required": [
"condition_set_id",
"created_at",
"id",
"value"
],
"properties": {
"condition_set_id": {
"description": "Unique ID of the condition set this item belongs
to.",
"type": "string",
"maxLength": 24,
"minLength": 24
},
"created_at": {
"description": "Unix timestamp of when the condition set item was
created in milliseconds.",
"type": "number"
},
"id": {
"description": "Unique ID of the created condition set item.",
"type": "string",
"maxLength": 24,
"minLength": 24
},
"value": {
"description": "The value stored in this condition set item.",
"type": "string"
}
}
}Fields§
§condition_set_id: ConditionSetItemConditionSetIdUnique ID of the condition set this item belongs to.
created_at: f64§id: ConditionSetItemIdUnique ID of the created condition set item.
value: StringThe value stored in this condition set item.
Trait Implementations§
Source§impl Clone for ConditionSetItem
impl Clone for ConditionSetItem
Source§fn clone(&self) -> ConditionSetItem
fn clone(&self) -> ConditionSetItem
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 ConditionSetItem
impl Debug for ConditionSetItem
Source§impl<'de> Deserialize<'de> for ConditionSetItem
impl<'de> Deserialize<'de> for ConditionSetItem
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConditionSetItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConditionSetItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&ConditionSetItem> for ConditionSetItem
impl From<&ConditionSetItem> for ConditionSetItem
Source§fn from(value: &ConditionSetItem) -> ConditionSetItem
fn from(value: &ConditionSetItem) -> ConditionSetItem
Converts to this type from the input type.
Source§impl Serialize for ConditionSetItem
impl Serialize for ConditionSetItem
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 ConditionSetItem
impl RefUnwindSafe for ConditionSetItem
impl Send for ConditionSetItem
impl Sync for ConditionSetItem
impl Unpin for ConditionSetItem
impl UnwindSafe for ConditionSetItem
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