/* Options: Date: 2025-08-04 03:20:26 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: AddComplianceFile.* //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}/user/{userid}/compliance/{complianceid}/file", Verbs="POST") open class AddComplianceFile : ComplianceBase(), IReturn, IPost { var DocumentType:ComplianceDocumentType? = null companion object { private val responseType = SaveFileEntityResponse::class.java } override fun getResponseType(): Any? = AddComplianceFile.responseType } open class SaveFileEntityResponse : ModifyEntityResponse() { var FileContentId:Int? = null } open class ComplianceBase { var TenderId:Int? = null var UserId:Int? = null var ComplianceId:Int? = null } enum class ComplianceDocumentType(val value:Int) { @SerializedName("0") SignedCompliance(0), @SerializedName("1") GeneratedXlsx(1), } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null }