pub struct FeedEntry {Show 17 fields
pub feed_id: String,
pub tenant_id: String,
pub timestamp: String,
pub event_type: FeedEntryEventType,
pub title: String,
pub summary: Option<String>,
pub agent_id: Option<String>,
pub agent_name: Option<String>,
pub company_id: Option<String>,
pub company_name: Option<String>,
pub team_id: Option<String>,
pub team_name: Option<String>,
pub session_id: Option<String>,
pub run_id: Option<String>,
pub status: Option<String>,
pub metrics: Option<FeedEntryMetrics>,
pub error: Option<String>,
}Expand description
FeedEntry model.
Fields§
§feed_id: String§tenant_id: String§timestamp: String§event_type: FeedEntryEventType§title: String§summary: Option<String>§agent_id: Option<String>§agent_name: Option<String>§company_id: Option<String>§company_name: Option<String>§team_id: Option<String>§team_name: Option<String>§session_id: Option<String>§run_id: Option<String>§status: Option<String>§metrics: Option<FeedEntryMetrics>§error: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for FeedEntry
impl<'de> Deserialize<'de> for FeedEntry
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
impl StructuralPartialEq for FeedEntry
Auto Trait Implementations§
impl Freeze for FeedEntry
impl RefUnwindSafe for FeedEntry
impl Send for FeedEntry
impl Sync for FeedEntry
impl Unpin for FeedEntry
impl UnsafeUnpin for FeedEntry
impl UnwindSafe for FeedEntry
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