pub struct EventSchema {
    pub event_id: String,
    pub entity_id: Option<String>,
    pub status: String,
    pub event_type: String,
    pub created_at: String,
    pub status_set_at: String,
}Fields§
§event_id: StringBlend UUID of the event
entity_id: Option<String>A Blend UUID. If this is set, all events for the given entity are returned.
status: StringThe latest status of the event, updated by the API
event_type: StringEvent type
created_at: StringThe UTC timestamp of the event creation. ISO format
status_set_at: StringThe UTC timestamp of the latest status that was posted for the event. ISO format
Trait Implementations§
Source§impl Debug for EventSchema
 
impl Debug for EventSchema
Source§impl<'de> Deserialize<'de> for EventSchema
 
impl<'de> Deserialize<'de> for EventSchema
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 Display for EventSchema
 
impl Display for EventSchema
Auto Trait Implementations§
impl Freeze for EventSchema
impl RefUnwindSafe for EventSchema
impl Send for EventSchema
impl Sync for EventSchema
impl Unpin for EventSchema
impl UnwindSafe for EventSchema
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