ColleagueProfile

class ColleagueProfile(var firstName: String? = null, var lastName: String? = null, var isEnrolled: Boolean = false)

Represents the profile of a colleague.

Constructors

Link copied to clipboard
constructor(firstName: String? = null, lastName: String? = null, isEnrolled: Boolean = false)

Properties

Link copied to clipboard

The first name of the colleague.

Link copied to clipboard

Indicates whether the colleague is enrolled.

Link copied to clipboard

The last name of the colleague.

Functions

Link copied to clipboard
open override fun toString(): String