/* Options: Date: 2025-08-04 04:14:38 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: BrowseStatement.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/statement/statementtype", Verbs="GET") open class BrowseStatement : IReturn, IGet { var StatementType:StatementType? = null companion object { private val responseType = BrowseStatementResponse::class.java } override fun getResponseType(): Any? = BrowseStatement.responseType } open class BrowseStatementResponse : ResponseBase() { var Statement:StatementDetails? = null } enum class StatementType(val value:Int) { @SerializedName("0") PrivacyStatement(0), @SerializedName("1") VeoliaSupplierCharter(1), @SerializedName("2") VeoliaCoreStandards(2), } open class StatementBase : ModifyRequestBase() { var StatementType:StatementType? = null var Url:String? = null } open interface IConcurrencyStamp { var ConcurrencyStamp:String? } open class ResponseBase { var ResponseStatus:ResponseStatus? = null } open class StatementDetails : StatementBase() { } open class ModifyRequestBase : IConcurrencyStamp { var ConcurrencyStamp:String? = null }