2023-05-20 21:18:10 -05:00
|
|
|
package structs
|
|
|
|
|
2023-05-22 09:28:31 -05:00
|
|
|
import "time"
|
|
|
|
|
2023-05-20 21:18:10 -05:00
|
|
|
type Social struct {
|
2023-05-29 15:02:10 -05:00
|
|
|
Type string `json:"type"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Url string `json:"url"`
|
2023-05-22 09:28:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Stream struct {
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Topic string `json:"topic"`
|
|
|
|
StartedAt time.Time `json:"startedAt"`
|
|
|
|
Viewers int `json:"viewers"`
|
|
|
|
Preview string `json:"preview"`
|
|
|
|
Cursor string `json:"cursor,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Streamer struct {
|
|
|
|
Username string `json:"username"`
|
2023-06-19 21:59:34 -05:00
|
|
|
Login string `json:"login"`
|
2023-05-22 09:28:31 -05:00
|
|
|
About string `json:"about"`
|
|
|
|
Pfp string `json:"pfp"`
|
2023-07-03 14:28:20 -05:00
|
|
|
Banner *string `json:"banner"`
|
2023-05-22 09:28:31 -05:00
|
|
|
Followers int `json:"followers"`
|
|
|
|
Socials []Social `json:"socials"`
|
|
|
|
IsLive bool `json:"isLive"`
|
|
|
|
IsPartner bool `json:"isPartner"`
|
2023-05-28 15:19:39 -05:00
|
|
|
ColorHex *string `json:"colorHex"`
|
2023-05-22 09:28:31 -05:00
|
|
|
Id string `json:"id"`
|
|
|
|
Stream *Stream `json:"stream,omitempty"`
|
2023-05-20 21:18:10 -05:00
|
|
|
}
|
2023-05-26 09:17:55 -05:00
|
|
|
|
2023-05-28 15:19:39 -05:00
|
|
|
type CategoryPreview struct {
|
|
|
|
Name string `json:"name"`
|
2023-05-26 09:17:55 -05:00
|
|
|
DisplayName string `json:"displayName"`
|
2023-05-28 15:19:39 -05:00
|
|
|
Viewers int `json:"viewers"`
|
2023-05-26 09:17:55 -05:00
|
|
|
Tags []string `json:"tags"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
Image string `json:"image"`
|
|
|
|
Cursor string `json:"cursor,omitempty"`
|
|
|
|
}
|
2023-05-28 15:19:39 -05:00
|
|
|
|
|
|
|
type CategoryMinifiedStreamer struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Pfp string `json:"pfp"`
|
|
|
|
ColorHex *string `json:"colorHex"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CategoryMinifiedStream struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
Viewers int `json:"viewers"`
|
|
|
|
Preview string `json:"preview"`
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
Cursor string `json:"cursor,omitempty"`
|
|
|
|
Streamer CategoryMinifiedStreamer `json:"streamer"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CategoryData struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
DisplayName string `json:"displayName"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Viewers int `json:"viewers"`
|
|
|
|
Followers int `json:"followers"`
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
Streams []CategoryMinifiedStream `json:"streams"`
|
|
|
|
Cover string `json:"cover"`
|
|
|
|
}
|
2023-05-31 18:39:07 -05:00
|
|
|
|
|
|
|
type Badge struct {
|
|
|
|
Id string `json:"id"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
SetId string `json:"setId"`
|
|
|
|
Version string `json:"version"`
|
|
|
|
Images map[string]string `json:"images"`
|
|
|
|
}
|
2023-06-06 07:31:12 -05:00
|
|
|
|
|
|
|
type SearchResult struct {
|
|
|
|
Channels []Streamer `json:"channels"`
|
|
|
|
Categories []CategoryPreview `json:"categories"`
|
|
|
|
RelatedLiveChannels []Streamer `json:"relatedChannels"`
|
|
|
|
ChannelsWithTag []Streamer `json:"channelsWithTag"`
|
|
|
|
}
|
2023-07-04 19:54:12 -05:00
|
|
|
|
|
|
|
type MinifiedCategory struct {
|
|
|
|
Image string `json:"image"`
|
|
|
|
Id string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
DisplayName string `json:"displayName"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MinifiedStreamer struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
Pfp string `json:"pfp"`
|
|
|
|
ColorHex string `json:"colorHex"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Video struct {
|
2023-07-20 13:13:41 -05:00
|
|
|
Type string `json:"type"`
|
2023-07-04 19:54:12 -05:00
|
|
|
Preview string `json:"preview"`
|
|
|
|
Game MinifiedCategory `json:"game"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
PublishedAt time.Time `json:"publishedAt"`
|
|
|
|
Views int `json:"views"`
|
2023-07-17 12:16:33 -05:00
|
|
|
Streamer Streamer `json:"streamer"`
|
|
|
|
Id string `json:"id"`
|
2023-07-04 19:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Shelve struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
Videos []Video `json:"videos"`
|
|
|
|
}
|
2023-07-19 19:27:36 -05:00
|
|
|
|
|
|
|
type VodMessager struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type VodCommentBadge struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
SetID string `json:"setId"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type VodComment struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
Messager MinifiedStreamer `json:"messager"`
|
|
|
|
Offset int `json:"offset"`
|
|
|
|
Cursor string `json:"cursor"`
|
|
|
|
Badges []VodCommentBadge `json:"badges"`
|
|
|
|
}
|
2023-07-30 18:12:11 -05:00
|
|
|
|
|
|
|
type StreamMessageBadge struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
SetID string `json:"setId"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type StreamMessage struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Color string `json:"color"`
|
|
|
|
Badges []StreamMessageBadge `json:"badges"`
|
|
|
|
}
|
2024-02-06 12:02:28 -05:00
|
|
|
|
|
|
|
type FollowingStreamer struct {
|
|
|
|
Username string `json:"username"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
Pfp string `json:"pfp"`
|
|
|
|
Followers int `json:"followers"`
|
|
|
|
}
|