UserOperatorProfile
data class UserOperatorProfile(val id: Long = LONG_INVALID, val identification: String = EMPTY_STR, val companyId: List<Long> = emptyList(), val name: String = EMPTY_STR, val lastname: String = EMPTY_STR, val username: String = EMPTY_STR, val email: String = EMPTY_STR, val phone: String = EMPTY_STR, val imageUrl: String = EMPTY_STR, val roleName: String = EMPTY_STR, val uid: String = EMPTY_STR, val operatorId: List<Long> = emptyList())
UserOperatorProfile is the model for the user operator profile data.
Parameters
id
Long the related user operator unique id.
identification
String the user operator identification.
name
String the user operator name.
lastname
String the user operator lastname.
username
String the user operator username.
email
String the user operator email.
phone
String the user operator phone.
imageUrl
String the user operator image url.
roleName
String the user operator role name.
uid
String the user operator uid.
Constructors
Link copied to clipboard
constructor(id: Long = LONG_INVALID, identification: String = EMPTY_STR, companyId: List<Long> = emptyList(), name: String = EMPTY_STR, lastname: String = EMPTY_STR, username: String = EMPTY_STR, email: String = EMPTY_STR, phone: String = EMPTY_STR, imageUrl: String = EMPTY_STR, roleName: String = EMPTY_STR, uid: String = EMPTY_STR, operatorId: List<Long> = emptyList())