/* Options: Date: 2025-08-04 04:16:01 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: BrowseSupplementary.* //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}", Verbs="GET") open class BrowseSupplementary : SupplementaryBase(), IReturn, IGet { companion object { private val responseType = BrowseSupplementaryResponse::class.java } override fun getResponseType(): Any? = BrowseSupplementary.responseType } open class BrowseSupplementaryResponse : ResponseBase() { var Supplementary:SupplementaryDetails? = null } 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 SupplementaryDetails : SupplementarySimple() { var TenderId:Int? = null var TenderUserId:Int? = null var UserId:Int? = null var TenderRoundId:Int? = null var ViewedById:Int? = null var SubmittedById:Int? = null var Meta:HashMap = HashMap() var SupplementaryFiles:ArrayList = ArrayList() } 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 } open class SupplementarySimple { var Id:Int? = null var TenderUserTenderRoundId:Int? = null var IsViewed:Boolean? = null var ViewingDateTime:Date? = null var IsSubmitted:Boolean? = null var SubmissionDateTime:Date? = null } enum class SupplementaryFileDirection(val value:Int) { @SerializedName("0") Request(0), @SerializedName("1") Response(1), }