RandomFursuit

@Serializable
data class RandomFursuit(val username: String, val displayName: String, val avatarUrl: String? = null, val species: String? = null)

随机推荐用户 表示一个随机推荐的用户信息

Parameters

username

用户名

displayName

显示名称

avatarUrl

头像 URL

species

物种

Constructors

Link copied to clipboard
constructor(username: String, displayName: String, avatarUrl: String? = null, species: String? = null)

Properties

Link copied to clipboard
val avatarUrl: String? = null
Link copied to clipboard
Link copied to clipboard
val species: String? = null
Link copied to clipboard