UserRelationshipsData

@Serializable
data class UserRelationshipsData(val userId: String, val partners: List<RelationshipPartner>, val totalCount: Int)

用户关系数据 包含用户的关系列表信息

Parameters

userId

用户 ID

partners

关系伴侣列表

totalCount

关系总数

Constructors

Link copied to clipboard
constructor(userId: String, partners: List<RelationshipPartner>, totalCount: Int)

Properties

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