twitch-my-emotes/struct.go
2024-03-09 11:35:02 +01:00

22 lines
537 B
Go

package main
type (
emote struct {
EmoteSetID string `json:"emote_set_id"`
EmoteType string `json:"emote_type"`
Format []string `json:"format"`
ID string `json:"id"`
Name string `json:"name"`
OwnerID string `json:"owner_id"`
Scale []string `json:"scale"`
ThemeMode []string `json:"theme_mode"`
}
emoteResponse struct {
Data []emote `json:"data"`
Template string `json:"template"`
Pagination *struct {
Cursor string `json:"cursor"`
} `json:"pagination"`
}
)