/* Options: Date: 2025-08-04 04:16:04 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: BrowseOrganizationOwner.* //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}/organizationowner/{organizationownerid}", Verbs="GET") open class BrowseOrganizationOwner : OrganizationOwnerBase(), IReturn, IGet { var OrganizationOwnerId:Int? = null companion object { private val responseType = BrowseOrganizationOwnerResponse::class.java } override fun getResponseType(): Any? = BrowseOrganizationOwner.responseType } open class BrowseOrganizationOwnerResponse : ResponseBase() { var OrganizationOwner:OrganizationOwnerDetails? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class ModifyOrganizationOwnerBase : ModifyRequestBase() { var ComplianceId:Int? = null var CountryId:Int? = null var VatNumber:String? = null var RegistrationNumber:String? = null var Name:String? = null var ShortName:String? = null var Address:String? = null var MainActivity:String? = null var EstablishedDate:Date? = null var Ownership:BigDecimal? = null } open class OrganizationOwnerBase { var TenderId:Int? = null var UserId:Int? = null var ComplianceId:Int? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class OrganizationOwnerDetails : ModifyOrganizationOwnerBase() { var Id:Int? = null var CountryName:String? = null var CountryCode:String? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }