mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-22 21:23:01 -05:00
11 lines
341 B
Go
11 lines
341 B
Go
package structs
|
|
|
|
type TwitchApiResponse struct {
|
|
Data map[string]interface{} `json:"data"`
|
|
Extensions Extensions `json:"extensions"`
|
|
}
|
|
type Extensions struct {
|
|
DurationMilliseconds int `json:"durationMilliseconds"`
|
|
OperationName string `json:"operationName"`
|
|
RequestID string `json:"requestID"`
|
|
}
|