/* Options: Date: 2025-08-04 03:33:54 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: AddSupplierFile.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/supplier/{supplierid}/file", Verbs="POST") open class AddSupplierFile : IReturn { var SupplierId:Int? = null var DocumentType:SupplierDocumentType? = null companion object { private val responseType = SaveFileEntityResponse::class.java } override fun getResponseType(): Any? = AddSupplierFile.responseType } open class SaveFileEntityResponse : ModifyEntityResponse() { var FileContentId:Int? = null } enum class SupplierDocumentType(val value:Int) { @SerializedName("0") RegistrationForm(0), @SerializedName("1") SpecimenSignature(1), } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null }