(* Options: Date: 2026-03-31 21:29:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetProjectsCount.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace IDB.API.DTO.Interfaces open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing [] type RegistrationProfileFieldValue() = member val DocumentFieldID:Guid = new Guid() with get,set member val Value:String = null with get,set member val ShadowValue:String = null with get,set member val IsModifiedByUser:Boolean = new Boolean() with get,set [] type IModifiedSince = abstract ModifiedSince:Nullable with get,set [] type ISearchCriteria = abstract SearchCriteria:String with get,set [] [] type GetProjectsCount() = interface IReturn member val PageSize:Int32 = new Int32() with get,set member val PageNumber:Int32 = new Int32() with get,set member val ModifiedSince:Nullable = new Nullable() with get,set member val SearchCriteria:String = null with get,set member val Active:Nullable = new Nullable() with get,set member val RegistrationProfileFieldID:Guid = new Guid() with get,set member val DependableFields:ResizeArray = null with get,set