io.opengood.api.rest.contracts.request.DeleteDataRequest.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.request
import com.fasterxml.jackson.annotation.JsonInclude
data class DeleteDataRequest(
@JsonInclude(JsonInclude.Include.NON_EMPTY)
val name: String,
@JsonInclude(JsonInclude.Include.NON_EMPTY)
val id: String
)