/* Options: Date: 2025-08-04 04:08:40 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: BrowseAllSupplementaryFile.* //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}/round/{tenderroundid}/supplementary/{supplementaryid}/file", Verbs="GET") open class BrowseAllSupplementaryFile : SupplementaryBase(), IReturn, IGet { companion object { private val responseType = BrowseAllSupplementaryFileResponse::class.java } override fun getResponseType(): Any? = BrowseAllSupplementaryFile.responseType } open class BrowseAllSupplementaryFileResponse : ResponseBase() { var SupplementaryFiles:ArrayList = ArrayList() } open class TenderUserTenderRoundBase { var TenderId:Int? = null var UserId:Int? = null var TenderRoundId:Int? = null } open class SupplementaryBase : TenderUserTenderRoundBase() { var SupplementaryId:Int? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class SupplementaryFileDetails : BrowseFileResponseBase() { var SupplementaryId:Int? = null var SupplementaryDocumentTypeId:Int? = null var SupplementaryDocumentType:String? = null var Direction:SupplementaryFileDirection? = null } open class BrowseFileResponseBase { var Id:Int? = null var FileContentId:Int? = null var FileName:String? = null var Size:Long? = null } enum class SupplementaryFileDirection(val value:Int) { @SerializedName("0") Request(0), @SerializedName("1") Response(1), }