offline-twitter/pkg/scraper/conversation.go
2023-11-07 15:04:47 -04:00

19 lines
421 B
Go

package scraper
type ConversationID string
type Conversation struct {
ID ConversationID
Type string
SortEventID int
SortTimestamp int
Participants []User
Nsfw bool
NotificationsDisabled bool
LastReadEventId int
ReadOnly bool
Trusted bool
LowQuality bool
Muted bool
}