offline-twitter/pkg/scraper/notification.go

19 lines
319 B
Go
Raw Normal View History

2024-08-25 16:27:49 -07:00
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
}