SchoolSearchData

@Serializable
data class SchoolSearchData(val schools: List<SchoolInfo>, val totalCount: Int, val cursor: String? = null)

学校搜索数据 包含学校搜索结果

Parameters

schools

学校列表

totalCount

总数量

cursor

分页游标(可选)

Constructors

Link copied to clipboard
constructor(schools: List<SchoolInfo>, totalCount: Int, cursor: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "cursor")
val cursor: String? = null
Link copied to clipboard
@SerialName(value = "schools")
val schools: List<SchoolInfo>
Link copied to clipboard
@SerialName(value = "totalCount")
val totalCount: Int