UserCharactersData

@Serializable
data class UserCharactersData(val userId: String, val username: String, val characters: List<CharacterInfo>, val totalCount: Int)

用户角色数据 包含用户的角色列表

Parameters

userId

用户 ID

username

用户名

characters

角色列表

totalCount

角色总数

Constructors

Link copied to clipboard
constructor(userId: String, username: String, characters: List<CharacterInfo>, totalCount: Int)

Properties

Link copied to clipboard
@SerialName(value = "characters")
val characters: List<CharacterInfo>
Link copied to clipboard
@SerialName(value = "totalCount")
val totalCount: Int
Link copied to clipboard
@SerialName(value = "userId")
val userId: String
Link copied to clipboard
@SerialName(value = "username")
val username: String