/* Options: Date: 2025-08-04 04:14: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: EditTender.* //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}", Verbs="PUT") open class EditTender : TenderBase(), IReturn, IPut { var TenderId:Int? = null companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = EditTender.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } enum class TenderType(val value:Int) { @SerializedName("0") Private(0), @SerializedName("1") Public(1), } 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 TenderBase { var TenderIdentifier:String? = null var TenderType:TenderType? = null var Subject:String? = null var ProcurementContact:String? = null var ProcurementContactEmail:String? = null var ProcurementContactPhone:String? = null var ProfessionalContact:String? = null var ProfessionalContactEmail:String? = null var ProfessionalContactPhone:String? = null var Result:String? = null var Status:TenderStatus? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }