io.opengood.api.rest.contracts.response.DataResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-contracts Show documentation
Show all versions of rest-api-contracts Show documentation
Reusable REST API contracts
package io.opengood.api.rest.contracts.response
import io.opengood.api.rest.contracts.page.PageData
import io.opengood.api.rest.contracts.record.RecordData
data class DataResponse(
val state: OperationState,
val message: String,
val pages: PageData,
val records: RecordData,
val data: List