pub struct ChatStatisticsSupergroup {Show 16 fields
pub period: DateRange,
pub member_count: StatisticalValue,
pub message_count: StatisticalValue,
pub viewer_count: StatisticalValue,
pub sender_count: StatisticalValue,
pub member_count_graph: StatisticalGraph,
pub join_graph: StatisticalGraph,
pub join_by_source_graph: StatisticalGraph,
pub language_graph: StatisticalGraph,
pub message_content_graph: StatisticalGraph,
pub action_graph: StatisticalGraph,
pub day_graph: StatisticalGraph,
pub week_graph: StatisticalGraph,
pub top_senders: Vec<ChatStatisticsMessageSenderInfo>,
pub top_administrators: Vec<ChatStatisticsAdministratorActionsInfo>,
pub top_inviters: Vec<ChatStatisticsInviterInfo>,
}
Expand description
A detailed statistics about a supergroup chat
Fields§
§period: DateRange
A period to which the statistics applies
member_count: StatisticalValue
Number of members in the chat
message_count: StatisticalValue
Number of messages sent to the chat
viewer_count: StatisticalValue
Number of users who viewed messages in the chat
sender_count: StatisticalValue
Number of users who sent messages to the chat
member_count_graph: StatisticalGraph
A graph containing number of members in the chat
join_graph: StatisticalGraph
A graph containing number of members joined and left the chat
join_by_source_graph: StatisticalGraph
A graph containing number of new member joins per source
language_graph: StatisticalGraph
A graph containing distribution of active users per language
message_content_graph: StatisticalGraph
A graph containing distribution of sent messages by content type
action_graph: StatisticalGraph
A graph containing number of different actions in the chat
day_graph: StatisticalGraph
A graph containing distribution of message views per hour
week_graph: StatisticalGraph
A graph containing distribution of message views per day of week
top_senders: Vec<ChatStatisticsMessageSenderInfo>
List of users sent most messages in the last week
top_administrators: Vec<ChatStatisticsAdministratorActionsInfo>
List of most active administrators in the last week
top_inviters: Vec<ChatStatisticsInviterInfo>
List of most active inviters of new members in the last week
Trait Implementations§
Source§impl Clone for ChatStatisticsSupergroup
impl Clone for ChatStatisticsSupergroup
Source§fn clone(&self) -> ChatStatisticsSupergroup
fn clone(&self) -> ChatStatisticsSupergroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more