offline-twitter/pkg/scraper/notification.go
2024-08-25 16:27:49 -07:00

19 lines
319 B
Go

package scraper
type NotificationID string
type Notification struct {
ID NotificationID
Type int
SentAt Timestamp
SortIndex int64
UserID UserID // recipient of the notification
ActionUserID UserID
ActionTweetID TweetID
ActionRetweetID TweetID
TweetIDs []TweetID
UserIDs []UserID
}