UserCreatedEvent

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

User created event.

Parameters

username

The username of the user.

description

The description of the user.

profilePicture

The profile picture url 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