/* Options: Date: 2025-08-04 04:05:38 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EditTenderStatus.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/tender/{tenderid}/status", Verbs="PUT") open class EditTenderStatus : IReturn, IPut { var TenderId:Int? = null var Status:TenderStatus? = null companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = EditTenderStatus.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } enum class TenderStatus(val value:Int) { @SerializedName("0") FirstRound(0), @SerializedName("1") SecondRound(1), @SerializedName("2") ThirdRound(2), @SerializedName("3") Successful(3), @SerializedName("4") UnSuccessful(4), @SerializedName("5") Revoked(5), } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }