type Highlight struct {
HighlightID int64 `json:"highlight_id"`
Text string `json:"text"`
Note interface{} `json:"note"` // using interface{} since it can be null BookmarkID int64 `json:"bookmark_id"`
Time int64 `json:"time"`
Position int `json:"position"`
Type string `json:"type"`
}
type Tag struct {
Count int `json:"count"`
Hash string `json:"hash"`
Name string `json:"name"`
ID int `json:"id"`
Time float64 `json:"time"`
Slug string `json:"slug"`
}
type User struct {
Username string `json:"username"`
UserID int `json:"user_id"`
Type string `json:"type"`
SubscriptionIsActive string `json:"subscription_is_active"`
}