/* Options: Date: 2025-08-04 04:21:56 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: BrowseAllStatement.* //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", Verbs="GET") open class BrowseAllStatement : IReturn, IGet { companion object { private val responseType = BrowseAllStatementResponse::class.java } override fun getResponseType(): Any? = BrowseAllStatement.responseType } open class BrowseAllStatementResponse : ResponseBase() { var Statements:ArrayList = ArrayList() } 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 }