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"` } )