io.opengood.api.rest.contracts.response.OperationState.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
enum class OperationState(private val value: String) {
SUCCESS("Success"),
FAILED("Failed");
override fun toString() = value
}