/* Options: Date: 2025-08-04 04:20:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: BrowseStatement.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.IO; using Portal.Common; using Portal.ServiceDto; namespace Portal.Common { public partial interface IConcurrencyStamp { string ConcurrencyStamp { get; set; } } public enum StatementType { PrivacyStatement = 0, VeoliaSupplierCharter = 1, VeoliaCoreStandards = 2, } } namespace Portal.ServiceDto { [Route("/statement/statementtype", "GET")] public partial class BrowseStatement : IReturn, IGet { public virtual StatementType StatementType { get; set; } } public partial class BrowseStatementResponse : ResponseBase { public virtual StatementDetails Statement { get; set; } } public partial class ModifyRequestBase : IConcurrencyStamp { public virtual string ConcurrencyStamp { get; set; } } public partial class ResponseBase { public virtual ResponseStatus ResponseStatus { get; set; } } public partial class StatementBase : ModifyRequestBase { public virtual StatementType StatementType { get; set; } public virtual string Url { get; set; } } public partial class StatementDetails : StatementBase { } }