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

io.opengood.api.rest.contracts.response.OperationState.kt Maven / Gradle / Ivy

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

enum class OperationState(private val value: String) {
    SUCCESS("Success"),
    FAILED("Failed");

    override fun toString() = value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy