All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.opengood.api.rest.contracts.request.GetDataRequest.kt Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package io.opengood.api.rest.contracts.request

import com.fasterxml.jackson.annotation.JsonInclude
import io.opengood.api.rest.contracts.page.PageRequest
import io.opengood.api.rest.contracts.sort.SortRequest

data class GetDataRequest(
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    val name: String,
    val filters: Map = emptyMap(),
    val page: PageRequest = PageRequest.EMPTY,
    val sort: SortRequest = SortRequest.EMPTY
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy