Documentation
¶
Index ¶
Constants ¶
View Source
const ( NoToken = iota AccessToken = iota RefreshToken = iota )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Flower ¶
type Flower struct {
// 青色の値(%)
Blue int64 `json:"blue,omitempty"`
// 花びらの所属するカテゴリ
Category string `json:"category,omitempty"`
// 緑色の値(%)
Green int64 `json:"green,omitempty"`
// 花びらの名前
Name string `json:"name,omitempty"`
// 赤色の値(%)
Red int64 `json:"red,omitempty"`
}
Flower 花びら定義 swagger:model Flower
type ImageSet ¶
type ImageSet struct {
// Base64エンコードされたベース画像
BaseImage string `json:"base_image,omitempty"`
// Base64エンコードされたマスク画像
MaskImage string `json:"mask_image,omitempty"`
// 装備画像セットの名前
Name string `json:"name,omitempty"`
}
ImageSet 装備画像セット(ベース画像とマスク画像のペア) swagger:model ImageSet
type Item ¶
type Item struct {
// 装備画像セット
Images []*ImageSet `json:"images"`
// 装備の名前
Name string `json:"name,omitempty"`
}
Item 装備情報 swagger:model Item
Click to show internal directories.
Click to hide internal directories.