UserProfile

data class UserProfile(var userID: String = "", var nickname: String? = null, var avatarURL: String? = null, var selfSignature: String? = null, var gender: Gender? = null, var role: Int? = null, var level: Int? = null, var birthday: Long? = null, var allowType: AllowType? = null, var customInfo: Map<String, ByteArray>? = null) : Parcelable

User profile

Constructors

Link copied to clipboard
constructor(userID: String = "", nickname: String? = null, avatarURL: String? = null, selfSignature: String? = null, gender: Gender? = null, role: Int? = null, level: Int? = null, birthday: Long? = null, allowType: AllowType? = null, customInfo: Map<String, ByteArray>? = null)

Properties

Link copied to clipboard

Friend verification method. {@link AllowType}

Link copied to clipboard

Avatar URL.

Link copied to clipboard

Birthday.

Link copied to clipboard

Custom information.

Link copied to clipboard

Gender. {@link Gender}

Link copied to clipboard
var level: Int?

Level.

Link copied to clipboard

Nickname.

Link copied to clipboard
var role: Int?

Role.

Link copied to clipboard

Self signature.

Link copied to clipboard

User ID.