0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 21:23:01 -05:00
safetwitch-backend/extractor/structs/streamerInfoRaw.go
2023-05-20 17:18:23 -04:00

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