/* Options: Date: 2025-08-04 04:34:49 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: BrowseCompliance.* //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}", Verbs="GET") open class BrowseCompliance : ComplianceBase(), IReturn, IGet { companion object { private val responseType = BrowseComplianceResponse::class.java } override fun getResponseType(): Any? = BrowseCompliance.responseType } open class BrowseComplianceResponse : ResponseBase() { var Compliance:ComplianceDetails? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } 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 ComplianceBase { var TenderId:Int? = null var UserId:Int? = null var ComplianceId:Int? = null } open class ModifyPrivateOwnerBase : ModifyRequestBase() { var ComplianceId:Int? = null var Name:String? = null var BirthDate:Date? = null var Ownership:BigDecimal? = null } open class ModifyActualOwnerBase : ModifyRequestBase() { var ComplianceId:Int? = null var Name:String? = null var BirthDate:Date? = null var Ownership:BigDecimal? = null } 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 ResponseBase { var ResponseStatus:ResponseStatus? = null } open class ComplianceDetails : ModifyComplianceBase() { var Id:Int? = null var SubmittedById:Int? = null var SubmissionDateTime:Date? = null var IsSubmitted:Boolean? = null var PrivateOwners:ArrayList = ArrayList() var ActualOwners:ArrayList = ArrayList() var OrganizationOwners:ArrayList = ArrayList() } open class PrivateOwnerDetails : ModifyPrivateOwnerBase() { var Id:Int? = null } open class ActualOwnerDetails : ModifyActualOwnerBase() { var Id:Int? = 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 }