Package-level declarations
Types
Link copied to clipboard
data class RegistrationInviteCodeData(val codeExpirationUTCDate: String, val accessToken: String, val tokenExpirationUTCDate: String, val email: String? = null, val phone: String? = null)
RegistrationInviteCodeData is the registration invite code data.
Link copied to clipboard
data class RegistrationUserOperatorData(val name: String = EMPTY_STR, val lastname: String = EMPTY_STR, val identification: String = EMPTY_STR, val email: String = EMPTY_STR, val phone: String = EMPTY_STR, val password: String = EMPTY_STR)
RegistrationUserOperatorData is data required to register a user operator.
Link copied to clipboard
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.