(* Options: Date: 2025-08-04 04:32:20 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BrowseStatement.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO type StatementType = | PrivacyStatement = 0 | VeoliaSupplierCharter = 1 | VeoliaCoreStandards = 2 [] type ModifyRequestBase() = member val ConcurrencyStamp:String = null with get,set [] type StatementBase() = inherit ModifyRequestBase() member val StatementType:StatementType = new StatementType() with get,set member val Url:String = null with get,set [] type IConcurrencyStamp = abstract ConcurrencyStamp:String with get,set [] type ResponseBase() = member val ResponseStatus:ResponseStatus = null with get,set [] type StatementDetails() = inherit StatementBase() [] type BrowseStatementResponse() = inherit ResponseBase() member val Statement:StatementDetails = null with get,set [] [] type BrowseStatement() = interface IReturn interface IGet member val StatementType:StatementType = new StatementType() with get,set