| 52 | } |
| 53 | |
| 54 | type info struct { |
| 55 | PlayerDetailInfo struct { |
| 56 | AssistAvatar role `json:"AssistAvatar"` |
| 57 | IsDisplayAvatarList bool `json:"IsDisplayAvatarList"` |
| 58 | DisplayAvatarList []role `json:"DisplayAvatarList"` |
| 59 | UID int `json:"UID"` |
| 60 | CurFriendCount int `json:"CurFriendCount"` |
| 61 | WorldLevel int `json:"WorldLevel"` |
| 62 | NickName string `json:"NickName"` |
| 63 | Birthday int `json:"Birthday"` |
| 64 | Level int `json:"Level"` |
| 65 | PlayerSpaceInfo struct { |
| 66 | ChallengeData struct { |
| 67 | PreMazeGroupIndex int `json:"PreMazeGroupIndex"` |
| 68 | } `json:"ChallengeData"` |
| 69 | PassAreaProgress int `json:"PassAreaProgress"` |
| 70 | LightConeCount int `json:"LightConeCount"` |
| 71 | AvatarCount int `json:"AvatarCount"` |
| 72 | AchievementCount int `json:"AchievementCount"` |
| 73 | } `json:"PlayerSpaceInfo"` |
| 74 | HeadIconID int `json:"HeadIconID"` |
| 75 | } `json:"PlayerDetailInfo"` |
| 76 | } |
| 77 | |
| 78 | type role struct { |
| 79 | BehaviorList []struct { |
nothing calls this directly
no outgoing calls
no test coverage detected