Files
go-bot-dongl/structs/hitokoto.go
NothAmor 2026e17613 update
2023-07-17 21:54:43 +08:00

17 lines
481 B
Go

package structs
type HitokotoResponse struct {
ID int `json:"id"`
UUID string `json:"uuid"`
Hitokoto string `json:"hitokoto"`
Type string `json:"type"`
From string `json:"from"`
FromWho any `json:"from_who"`
Creator string `json:"creator"`
CreatorUID int `json:"creator_uid"`
Reviewer int `json:"reviewer"`
CommitFrom string `json:"commit_from"`
CreatedAt string `json:"created_at"`
Length int `json:"length"`
}