@@ -0,0 +1,26 @@
|
||||
package itemapischema
|
||||
|
||||
type GeneralItemList struct {
|
||||
ItemID int `json:"item_id"`
|
||||
Amount int `json:"amount"`
|
||||
UseButtonFlag bool `json:"use_button_flag"`
|
||||
GeneralItemType int `json:"general_item_type"`
|
||||
}
|
||||
|
||||
type BuffItemList struct {
|
||||
ItemID int `json:"item_id"`
|
||||
Amount int `json:"amount"`
|
||||
BuffType int `json:"buff_type"`
|
||||
}
|
||||
|
||||
type ListData struct {
|
||||
GeneralItemList []GeneralItemList `json:"general_item_list"`
|
||||
BuffItemList []BuffItemList `json:"buff_item_list"`
|
||||
}
|
||||
|
||||
type ListResp struct {
|
||||
Result ListData `json:"result"`
|
||||
Status int `json:"status"`
|
||||
CommandNum bool `json:"commandNum"`
|
||||
TimeStamp int64 `json:"timeStamp"`
|
||||
}
|
||||
@@ -8,18 +8,18 @@ type LicenseInfo struct {
|
||||
}
|
||||
|
||||
type TopInfoData struct {
|
||||
FriendActionCnt int `json:"friend_action_cnt"`
|
||||
FriendGreetCnt int `json:"friend_greet_cnt"`
|
||||
FriendVarietyCnt int `json:"friend_variety_cnt"`
|
||||
FriendNewCnt int `json:"friend_new_cnt"`
|
||||
PresentCnt int `json:"present_cnt"`
|
||||
FriendActionCnt int64 `json:"friend_action_cnt"`
|
||||
FriendGreetCnt int64 `json:"friend_greet_cnt"`
|
||||
FriendVarietyCnt int64 `json:"friend_variety_cnt"`
|
||||
FriendNewCnt int64 `json:"friend_new_cnt"`
|
||||
PresentCnt int64 `json:"present_cnt"`
|
||||
SecretBoxBadgeFlag bool `json:"secret_box_badge_flag"`
|
||||
ServerDatetime string `json:"server_datetime"`
|
||||
ServerTimestamp int64 `json:"server_timestamp"`
|
||||
NoticeFriendDatetime string `json:"notice_friend_datetime"`
|
||||
NoticeMailDatetime string `json:"notice_mail_datetime"`
|
||||
FriendsApprovalWaitCnt int `json:"friends_approval_wait_cnt"`
|
||||
FriendsRequestCnt int `json:"friends_request_cnt"`
|
||||
FriendsApprovalWaitCnt int64 `json:"friends_approval_wait_cnt"`
|
||||
FriendsRequestCnt int64 `json:"friends_request_cnt"`
|
||||
IsTodayBirthday bool `json:"is_today_birthday"`
|
||||
LicenseInfo LicenseInfo `json:"license_info"`
|
||||
UsingBuffInfo []any `json:"using_buff_info"`
|
||||
|
||||
@@ -8,8 +8,8 @@ type CardRankingData struct {
|
||||
}
|
||||
|
||||
type CardRankingResp struct {
|
||||
Result any `json:"result"`
|
||||
Status int `json:"status"`
|
||||
CommandNum bool `json:"commandNum"`
|
||||
TimeStamp int64 `json:"timeStamp"`
|
||||
Result []CardRankingData `json:"result"`
|
||||
Status int `json:"status"`
|
||||
CommandNum bool `json:"commandNum"`
|
||||
TimeStamp int64 `json:"timeStamp"`
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ type UserInfo struct {
|
||||
UnitMax int `json:"unit_max"`
|
||||
EnergyMax int `json:"energy_max"`
|
||||
FriendMax int `json:"friend_max"`
|
||||
UnitCnt int `json:"unit_cnt"`
|
||||
UnitCnt int64 `json:"unit_cnt"`
|
||||
InviteCode string `json:"invite_code"`
|
||||
ElapsedTimeFromLogin string `json:"elapsed_time_from_login"`
|
||||
Introduction string `json:"introduction"`
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
package stampapischema
|
||||
|
||||
type StampList struct {
|
||||
Position int `json:"position"`
|
||||
StampID int `json:"stamp_id"`
|
||||
}
|
||||
|
||||
type SettingList struct {
|
||||
StampSettingID int `json:"stamp_setting_id"`
|
||||
MainFlag int `json:"main_flag"`
|
||||
StampList []StampList `json:"stamp_list"`
|
||||
}
|
||||
|
||||
type StampSetting struct {
|
||||
StampType int `json:"stamp_type"`
|
||||
SettingList []SettingList `json:"setting_list"`
|
||||
}
|
||||
|
||||
type InfoData struct {
|
||||
OwningStampIds []int `json:"owning_stamp_ids"`
|
||||
StampSetting []StampSetting `json:"stamp_setting"`
|
||||
}
|
||||
|
||||
type InfoResp struct {
|
||||
Result InfoData `json:"result"`
|
||||
Status int `json:"status"`
|
||||
CommandNum bool `json:"commandNum"`
|
||||
TimeStamp int64 `json:"timeStamp"`
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package eventscenarioschema
|
||||
|
||||
type StartUpReq struct {
|
||||
Module string `json:"module"`
|
||||
EventScenarioID int `json:"event_scenario_id"`
|
||||
Action string `json:"action"`
|
||||
TimeStamp int `json:"timeStamp"`
|
||||
Mgd int `json:"mgd"`
|
||||
CommandNum string `json:"commandNum"`
|
||||
}
|
||||
|
||||
type EventScenarioList struct {
|
||||
EventID int `json:"event_id"`
|
||||
Progress int `json:"progress"`
|
||||
Status int `json:"status"`
|
||||
EventScenarioID int `json:"event_scenario_id"`
|
||||
}
|
||||
|
||||
type StartUpData struct {
|
||||
EventScenarioList EventScenarioList `json:"event_scenario_list"`
|
||||
ScenarioAdjustment int `json:"scenario_adjustment"`
|
||||
}
|
||||
|
||||
type StartUpResp struct {
|
||||
ResponseData StartUpData `json:"response_data"`
|
||||
ReleaseInfo []any `json:"release_info"`
|
||||
StatusCode int `json:"status_code"`
|
||||
}
|
||||
@@ -71,7 +71,7 @@ type FriendList struct {
|
||||
}
|
||||
|
||||
type ListData struct {
|
||||
ItemCount int `json:"item_count"`
|
||||
ItemCount int64 `json:"item_count"`
|
||||
FriendList []FriendList `json:"friend_list"`
|
||||
NewFriendList []any `json:"new_friend_list"`
|
||||
ServerTimestamp int64 `json:"server_timestamp"`
|
||||
|
||||
@@ -17,7 +17,7 @@ type SearchUserInfo struct {
|
||||
UnitMax int `json:"unit_max"`
|
||||
EnergyMax int `json:"energy_max"`
|
||||
FriendMax int `json:"friend_max"`
|
||||
UnitCnt int `json:"unit_cnt"`
|
||||
UnitCnt int64 `json:"unit_cnt"`
|
||||
ElapsedTimeFromLogin string `json:"elapsed_time_from_login"`
|
||||
Comment string `json:"comment"`
|
||||
}
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
package liverecordschema
|
||||
|
||||
type TotalStatus struct {
|
||||
Hp int `json:"hp"`
|
||||
Smile int `json:"smile"`
|
||||
Cute int `json:"cute"`
|
||||
Cool int `json:"cool"`
|
||||
}
|
||||
|
||||
type CenterBonus struct {
|
||||
Hp int `json:"hp"`
|
||||
Smile int `json:"smile"`
|
||||
Cute int `json:"cute"`
|
||||
Cool int `json:"cool"`
|
||||
}
|
||||
|
||||
type SiBonus struct {
|
||||
Hp int `json:"hp"`
|
||||
Smile int `json:"smile"`
|
||||
Cute int `json:"cute"`
|
||||
Cool int `json:"cool"`
|
||||
}
|
||||
|
||||
type AccessoryInfo struct {
|
||||
AccessoryOwningUserID int `json:"accessory_owning_user_id"`
|
||||
AccessoryID int `json:"accessory_id"`
|
||||
Exp int `json:"exp"`
|
||||
NextExp int `json:"next_exp"`
|
||||
Level int `json:"level"`
|
||||
MaxLevel int `json:"max_level"`
|
||||
RankUpCount int `json:"rank_up_count"`
|
||||
FavoriteFlag bool `json:"favorite_flag"`
|
||||
}
|
||||
|
||||
type UnitList struct {
|
||||
UnitID int `json:"unit_id"`
|
||||
Position int `json:"position"`
|
||||
Level int `json:"level"`
|
||||
LevelLimitID int `json:"level_limit_id"`
|
||||
DisplayRank int `json:"display_rank"`
|
||||
Love int `json:"love"`
|
||||
UnitSkillLevel int `json:"unit_skill_level"`
|
||||
IsRankMax bool `json:"is_rank_max"`
|
||||
IsLoveMax bool `json:"is_love_max"`
|
||||
IsLevelMax bool `json:"is_level_max"`
|
||||
IsSigned bool `json:"is_signed"`
|
||||
Rank int `json:"rank"`
|
||||
MaxHp int `json:"max_hp"`
|
||||
UnitRemovableSkillCapacity int `json:"unit_removable_skill_capacity"`
|
||||
RemovableSkillIds []int `json:"removable_skill_ids"`
|
||||
TotalStatus TotalStatus `json:"total_status"`
|
||||
SiBonus SiBonus `json:"si_bonus"`
|
||||
AccessoryInfo *AccessoryInfo `json:"accessory_info,omitempty"`
|
||||
}
|
||||
|
||||
type DeckInfo struct {
|
||||
LiveDifficultyID int `json:"live_difficulty_id"`
|
||||
TotalStatus TotalStatus `json:"total_status"`
|
||||
CenterBonus CenterBonus `json:"center_bonus"`
|
||||
SiBonus SiBonus `json:"si_bonus"`
|
||||
UnitList []UnitList `json:"unit_list"`
|
||||
}
|
||||
|
||||
type Icon struct {
|
||||
NormalID int `json:"normal_id"`
|
||||
JustID int `json:"just_id"`
|
||||
SlideID int `json:"slide_id"`
|
||||
}
|
||||
|
||||
type LiveSetting struct {
|
||||
NotesSpeed float64 `json:"notes_speed"`
|
||||
CutinBrightness int `json:"cutin_brightness"`
|
||||
CutinType int `json:"cutin_type"`
|
||||
EffectFlag bool `json:"effect_flag"`
|
||||
StringSize int `json:"string_size"`
|
||||
SeID int `json:"se_id"`
|
||||
Icon Icon `json:"icon"`
|
||||
BackgroundID int `json:"background_id"`
|
||||
RandomValue int `json:"random_value"`
|
||||
}
|
||||
|
||||
type TriggerLog struct {
|
||||
Position int `json:"position"`
|
||||
ActivationRate int `json:"activation_rate"`
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
package noticeschema
|
||||
|
||||
type UserGreetingData struct {
|
||||
ItemCount int `json:"item_count"`
|
||||
ItemCount int64 `json:"item_count"`
|
||||
HasNext bool `json:"has_next"`
|
||||
NoticeList []UserGreetingNotice `json:"notice_list"`
|
||||
ServerTimestamp int64 `json:"server_timestamp"`
|
||||
|
||||
Reference in New Issue
Block a user