/* Options: Date: 2025-08-04 03:43:07 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: AddCompliance.* //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", Verbs="POST") open class AddCompliance : ModifyComplianceBase(), IReturn, IPost { var TenderId:Int? = null var UserId:Int? = null var PrivateOwners:ArrayList = ArrayList() var ActualOwners:ArrayList = ArrayList() var OrganizationOwners:ArrayList = ArrayList() companion object { private val responseType = ModifyEntityResponse::class.java } override fun getResponseType(): Any? = AddCompliance.responseType } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class AddCompliancePrivateOwner { var Name:String? = null var BirthDate:Date? = null var Ownership:BigDecimal? = null } open class AddComplianceActualOwner { var Name:String? = null var BirthDate:Date? = null var Ownership:BigDecimal? = null } open class AddComplianceOrganizationOwner { 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 ModifyComplianceBase : ModifyRequestBase() { var IsPreventCorruptionRisk:Boolean? = null var AntiCorruptionMeasuresDescription:String? = null var IsPartnerCorrupt:Boolean? = null var IsCorruptionInspection:Boolean? = null var CriminalJudgement:String? = null var IsPartnerConvictedCorruption:Boolean? = null var PartnerConvictedEDocument:String? = null var PartnerConvictedDetails:String? = null var IsSelfExoneration:Boolean? = null var SelfExonerationDetails:String? = null var IsPartnerPEPContact:Boolean? = null var PartnerPEPContactDetails:String? = null var IsPartnerPEP:Boolean? = null var PartnerPEPDetails:String? = null var Other:String? = null var IsActualOwner:Boolean? = null var ActualOwnerComment:String? = null var IsPrivateOwner:Boolean? = null var IsOrganizationOwner:Boolean? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }