/* Options: Date: 2025-08-04 04:33: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: BrowseActualOwner.* //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}/compliance/{complianceid}/actualowner/{actualownerid}", Verbs="GET") open class BrowseActualOwner : ActualOwnerBase(), IReturn, IPost { var ActualOwnerId:Int? = null companion object { private val responseType = BrowseActualOwnerResponse::class.java } override fun getResponseType(): Any? = BrowseActualOwner.responseType } open class BrowseActualOwnerResponse : ResponseBase() { var ActualOwner:ActualOwnerDetails? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class ModifyActualOwnerBase : ModifyRequestBase() { var ComplianceId:Int? = null var Name:String? = null var BirthDate:Date? = null var Ownership:BigDecimal? = null } open class ActualOwnerBase { var TenderId:Int? = null var UserId:Int? = null var ComplianceId:Int? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class ActualOwnerDetails : ModifyActualOwnerBase() { var Id:Int? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }