(* Options: Date: 2026-06-01 14:56:15 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetProjectsService.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Telerik.Sitefinity.Translations.Model open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization type ProjectStatus = | NotStarted = 0 | Started = 1 | Completed = 2 [] type IProjectsFilter = abstract SearchText:String with get,set abstract Service:String[] with get,set abstract ProjectStatus:Nullable with get,set abstract ActualSourceLanguage:String with get,set abstract WithoutSourceLanguage:Boolean with get,set [] [] type GetProjectsService() = member val SearchText:String = null with get,set member val Service:String[] = null with get,set member val ProjectStatus:Nullable = new Nullable() with get,set member val ActualSourceLanguage:String = null with get,set member val WithoutSourceLanguage:Boolean = new Boolean() with get,set