Package-level declarations

Types

Link copied to clipboard

Status, if ACTIVE or INACTIVE. Values: ACTIVE,INACTIVE

Link copied to clipboard
data class ErrorMessageAdmDto(var message: String, var field: String? = null)

Message, which contains more details about the error.

Link copied to clipboard
data class ErrorResponseAdmDto(var endpoint: String, var code: String? = null, var messages: MutableList<ErrorMessageAdmDto>? = null, var datetime: OffsetDateTime? = null, var traceId: String? = null)

Response if an error occurs. It contains information about the error, the date-time and the path for better support in error cases.

Link copied to clipboard
data class PageAdmDto(var number: Int, var propertySize: Int, var numberOfElements: Int, var totalPages: Int, var totalElements: Long)

Object for paging in result lists.

Link copied to clipboard

Status of the request. The status can have the following states:

  • SUCCESSFUL - Request was processed successful
  • FAILED - Request failed without errors
Values: SUCCESSFUL,FAILED

Link copied to clipboard
data class StatusResponseAdmDto(var status: StatusEnumAdmDto)

Status object.