Files
honoka-chan/model/event.go
T
2023-06-20 09:08:42 +08:00

21 lines
477 B
Go

package model
// EventsResp ...
type EventsResp struct {
ResponseData EventsRes `json:"response_data"`
ReleaseInfo []any `json:"release_info"`
StatusCode int `json:"status_code"`
}
// EventsRes ...
type EventsRes struct {
TargetList []TargetList `json:"target_list"`
ServerTimestamp int64 `json:"server_timestamp"`
}
// TargetList ...
type TargetList struct {
Position int `json:"position"`
IsDisplayable bool `json:"is_displayable"`
}