offline-twitter/pkg/scraper/conversation.go

19 lines
421 B
Go
Raw Normal View History

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
}