UserSchoolsData

@Serializable
data class UserSchoolsData(val userId: String, val username: String, val schools: List<UserSchoolInfo>)

用户学校数据 包含用户的学校信息

Parameters

userId

用户 ID

username

用户名

schools

用户关联的学校列表

Constructors

Link copied to clipboard
constructor(userId: String, username: String, schools: List<UserSchoolInfo>)

Properties

Link copied to clipboard
@SerialName(value = "schools")
val schools: List<UserSchoolInfo>
Link copied to clipboard
@SerialName(value = "userId")
val userId: String
Link copied to clipboard
@SerialName(value = "username")
val username: String