/* Options: Date: 2025-08-04 04:23:35 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: BrowseAllSupplierFile.* //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="GET") open class BrowseAllSupplierFile : IReturn, IGet { var SupplierId:Int? = null companion object { private val responseType = BrowseAllSupplierFileResponse::class.java } override fun getResponseType(): Any? = BrowseAllSupplierFile.responseType } open class BrowseAllSupplierFileResponse : ResponseBase() { var SupplierFiles:ArrayList = ArrayList() } 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 }