UserInfo

@Serializable
data class UserInfo(@BsonId val userName: String, val name: String, val email: String, val profile: String? = null)

Represents user information.

Parameters

userName

the username of the user.

name

the name of the user.

email

the email address of the user.

profile

the URL of the user's profile picture.

Constructors

Link copied to clipboard
constructor(@BsonId userName: String, name: String, email: String, profile: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val profile: String? = null
Link copied to clipboard