/* Options: Date: 2025-08-04 04:14:37 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: BrowseProcurementAllFile.* //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}/procurement/{procurementid}/file", Verbs="GET") open class BrowseProcurementAllFile : ProcurementBase(), IReturn, IGet { var DocumentType:ProcurementDocumentType? = null companion object { private val responseType = BrowseProcurementAllFileResponse::class.java } override fun getResponseType(): Any? = BrowseProcurementAllFile.responseType } open class BrowseProcurementAllFileResponse : ResponseBase() { var ProcurementFiles:ArrayList = ArrayList() } enum class ProcurementDocumentType(val value:Int) { @SerializedName("0") BankAccountnumber(0), @SerializedName("1") EcoVadis(1), @SerializedName("2") Csr(2), @SerializedName("3") SignedProcurement(3), } open class ProcurementBase { var TenderId:Int? = null var UserId:Int? = null var ProcurementId:Int? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class ProcurementFileDetails : BrowseFileResponseBase() { var ProcurementId:Int? = null var DocumentType:ProcurementDocumentType? = null } open class BrowseFileResponseBase { var Id:Int? = null var FileContentId:Int? = null var FileName:String? = null var Size:Long? = null }