pub type GetTopicResponseContent = Topic;Aliased Type§
pub struct GetTopicResponseContent {Show 15 fields
pub id: i64,
pub name: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub active_at: Option<DateTime<Utc>>,
pub status: Option<String>,
pub account_id: Option<i64>,
pub app_url: Option<String>,
pub creator: Option<Contact>,
pub contacts: Option<Vec<Contact>>,
pub extenzions: Option<Vec<Extenzion>>,
pub collections: Option<Vec<Collection>>,
pub is_forged_sender: Option<bool>,
pub latest_entry: Option<Entry>,
pub entries: Option<Vec<Entry>>,
}Fields§
§id: i64§name: Option<String>§created_at: Option<DateTime<Utc>>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
updated_at: Option<DateTime<Utc>>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
active_at: Option<DateTime<Utc>>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
status: Option<String>§account_id: Option<i64>§app_url: Option<String>§creator: Option<Contact>§contacts: Option<Vec<Contact>>§extenzions: Option<Vec<Extenzion>>§collections: Option<Vec<Collection>>§is_forged_sender: Option<bool>§latest_entry: Option<Entry>§entries: Option<Vec<Entry>>The topic’s first page of entries (summaries, no bodies). Present on GetTopic; use GetTopicEntries for the rest and GetMessage for a body.