UserUpdatedEvent

data class UserUpdatedEvent(val username: String, val email: String? = null, val description: String? = null, val profilePicture: String? = null) : UserEvent

User updated event.

Parameters

username

The username of the user.

description

The description of the user.

profilePicture

The profile picture of the user.

Constructors

Link copied to clipboard
constructor(username: String, email: String? = null, description: String? = null, profilePicture: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
val email: String? = null
Link copied to clipboard
val profilePicture: String? = null
Link copied to clipboard