/* Options: Date: 2025-08-04 04:16:05 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: BrowseSupplierFile.* //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/{supplierfileid}", Verbs="GET") open class BrowseSupplierFile : IReturn, IGet { var SupplierId:Int? = null var SupplierFileId:Int? = null companion object { private val responseType = BrowseSupplierFileResponse::class.java } override fun getResponseType(): Any? = BrowseSupplierFile.responseType } open class BrowseSupplierFileResponse : ResponseBase() { var SupplierFile:SupplierFileDetails? = null } enum class SupplierDocumentType(val value:Int) { @SerializedName("0") RegistrationForm(0), @SerializedName("1") SpecimenSignature(1), } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class SupplierFileDetails : BrowseFileResponseBase() { var SupplierId:Int? = null var DocumentType:SupplierDocumentType? = null } open class BrowseFileResponseBase { var Id:Int? = null var FileContentId:Int? = null var FileName:String? = null var Size:Long? = null }