/* Options: Date: 2025-08-04 04:07:10 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: DeletePrivateOwner.* //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}/privateowner/{privateownerid}", Verbs="DELETE") open class DeletePrivateOwner : PrivateOwnerBase(), IReturn, IDelete { var PrivateOwnerId:Int? = null companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = DeletePrivateOwner.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } open class PrivateOwnerBase { var TenderId:Int? = null var UserId:Int? = null var ComplianceId:Int? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }