Skip to content

Commit

Permalink
feat: upgrade to v250.0.0.21.109
Browse files Browse the repository at this point in the history
  • Loading branch information
Davincible committed Sep 8, 2022
2 parents d5127c0 + 8e71025 commit 6459c25
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion inbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ type InboxItem struct {
TqSeqID int `json:"tq_seq_id"`

// Type there are a few types:
// text, like, raven_media, action_log, media_share, reel_share, link
// text, like, raven_media, action_log, media_share, reel_share, link, clip
Type string `json:"item_type"`

// Text is message text.
Expand All @@ -107,6 +107,7 @@ type InboxItem struct {

Like string `json:"like"`

Clip *clip `json:"clip"`
Reel *reelShare `json:"reel_share"`
Media *Item `json:"media"`
MediaShare *Item `json:"media_share"`
Expand Down Expand Up @@ -163,6 +164,10 @@ type reelShare struct {
Media Item `json:"media"`
}

type clip struct {
Media Item `json:"clip"`
}

type actionLog struct {
Description string `json:"description"`
}
Expand Down

0 comments on commit 6459c25

Please sign in to comment.