/* Options: Date: 2025-08-04 04:08:35 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BrowseAllStatement.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/statement", Verbs="GET") public static class BrowseAllStatement implements IReturn, IGet { private static Object responseType = BrowseAllStatementResponse.class; public Object getResponseType() { return responseType; } } public static class BrowseAllStatementResponse extends ResponseBase { public ArrayList Statements = null; public ArrayList getStatements() { return Statements; } public BrowseAllStatementResponse setStatements(ArrayList value) { this.Statements = value; return this; } } public static enum StatementType { @SerializedName("0") PrivacyStatement(0), @SerializedName("1") VeoliaSupplierCharter(1), @SerializedName("2") VeoliaCoreStandards(2); private final int value; StatementType(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class StatementBase extends ModifyRequestBase { public StatementType StatementType = null; public String Url = null; public StatementType getStatementType() { return StatementType; } public StatementBase setStatementType(StatementType value) { this.StatementType = value; return this; } public String getUrl() { return Url; } public StatementBase setUrl(String value) { this.Url = value; return this; } } public static interface IConcurrencyStamp { public String ConcurrencyStamp = null; } public static class ResponseBase { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class StatementDetails extends StatementBase { } public static class ModifyRequestBase implements IConcurrencyStamp { public String ConcurrencyStamp = null; public String getConcurrencyStamp() { return ConcurrencyStamp; } public ModifyRequestBase setConcurrencyStamp(String value) { this.ConcurrencyStamp = value; return this; } } }