Add information on individual message count

Этот коммит содержится в:
Shivashis Padhi
2022-07-28 16:36:37 +05:30
родитель f007d94155
Коммит 57e25b5d8f
2 изменённых файлов: 65 добавлений и 13 удалений

Просмотреть файл

@@ -104,9 +104,16 @@ type DurationPostCount struct {
// Top DMs
type TopDM struct {
MessageCount int64 `json:"post_count"`
Participants string `json:"-"`
SecondParticipant *TopDMInsightUserInformation `json:"second_participant"`
MessageCount int64 `json:"post_count"`
OutgoingMessageCount int64 `json:"outgoing_message_count"`
Participants string `json:"-"`
ChannelId string `json:"-"`
SecondParticipant *TopDMInsightUserInformation `json:"second_participant"`
}
type OutgoingMessageQueryResult struct {
ChannelId string
MessageCount int
}
type TopDMList struct {