Package-level declarations
Types
Link copied to clipboard
CapacityInfo is the specific capacity record response.
Link copied to clipboard
CoordinatesData is a data class that represents the coordinates of a location.
Link copied to clipboard
data class PaginationInfo(val nextPage: Int? = null, val totalPages: Int = 0, val totalRecords: Int = 0)
PaginationInfo is the model for pagination related data.
Link copied to clipboard
data class SessionData(val email: String = EMPTY_STR, val phoneNumber: String = EMPTY_STR, val userId: Long = LONG_INVALID, val roleId: Long = LONG_INVALID, val permission: List<String> = emptyList(), val clientName: String = EMPTY_STR, val roleName: String = EMPTY_STR, val companyIds: List<Long> = emptyList(), val accessToken: String = EMPTY_STR, val expireTokenUTC: String = EMPTY_STR, val tokenType: String = EMPTY_STR, val addedOn: String = EMPTY_STR, val key: String = EMPTY_STR, val accessTokenFirebase: String = EMPTY_STR, val accessTokenPubSub: String = EMPTY_STR, val projectId: String = EMPTY_STR, val topicName: String = EMPTY_STR)
SessionData is the collected session data.