/* 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: BrowseSupplementaryDocumentType.* //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}/documenttype", Verbs="GET") open class BrowseSupplementaryDocumentType : SupplementaryBase(), IReturn, IGet { companion object { private val responseType = BrowseSupplementaryDocumentTypeResponse::class.java } override fun getResponseType(): Any? = BrowseSupplementaryDocumentType.responseType } open class BrowseSupplementaryDocumentTypeResponse : ResponseBase() { var DocumentTypes: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 SupplementaryDocumentTypeSimple { var Id:Int? = null var DocumentType:String? = null var Direction:SupplementaryFileDirection? = null } enum class SupplementaryFileDirection(val value:Int) { @SerializedName("0") Request(0), @SerializedName("1") Response(1), }