/* Options: Date: 2025-08-04 04:13:08 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: BrowseDirectPlusProcurementData.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/directplus/procurement", Verbs="GET") open class BrowseDirectPlusProcurementData : IReturn, IGet { var VatNumber:String? = null var Country:String? = null var DunsNumber:String? = null companion object { private val responseType = BrowseDirectPlusProcurementDataResponse::class.java } override fun getResponseType(): Any? = BrowseDirectPlusProcurementData.responseType } open class BrowseDirectPlusProcurementDataResponse : ResponseBase() { var WorkForceN1:Int? = null var WorkForceN2:Int? = null var WorkForceN3:Int? = null var SubscribedCapital:Double? = null var SubscribedCapitalCurrencyId:Int? = null var RevenueN1:Double? = null var RevenueN2:Double? = null var RevenueN3:Double? = null var NetProfitN1:Double? = null var NetProfitN2:Double? = null var NetProfitN3:Double? = null var EquityN1:Double? = null var EquityN2:Double? = null var EquityN3:Double? = null var LiabilityN1:Double? = null var LiabilityN2:Double? = null var LiabilityN3:Double? = null var OperatingResultN1:Double? = null var OperatingResultN2:Double? = null var OperatingResultN3:Double? = null var IndebtednessN1:Double? = null var IndebtednessN2:Double? = null var IndebtednessN3:Double? = null var SalesProportionateProfitN1:Double? = null var SalesProportionateProfitN2:Double? = null var SalesProportionateProfitN3:Double? = null var LiquidityRatioN1:Double? = null var LiquidityRatioN2:Double? = null var LiquidityRatioN3:Double? = null var DBFailureScore:Double? = null } open class ResponseBase { var ResponseStatus:ResponseStatus? = null }