(* Options: Date: 2025-05-06 12:34:21 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sanctionssearch.com/v2 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CountIncompleteClients.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace SanctionsSearch.Api2.ServiceModel.Operations.Base open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type Authentication() = /// ///The API User ID provided by us when you signed up to use our API. Can be provided in the request body, or as a header parameter (X-Api-User) /// [] [] member val ApiUserId:String = null with get,set /// ///The API User Key provided by us when you signed up to use our API. Can be provided in the request body, or as a header parameter (X-Api-Key) /// [] [] member val ApiUserKey:String = null with get,set /// ///The User ID of the user making the request (e.g. a sub user). This is optional but can be used to associate API requests with a specific user, thereby allowing user permissions to be enforced. Can be provided in the body, or as a header parameter (X-User-Id). /// [] [] member val UserId:String = null with get,set [] [] type BaseRequest() = /// ///The authentication credentials /// [] [] member val Authentication:Authentication = null with get,set [] type IBaseRequest = abstract Authentication:Authentication with get,set [] type ClientState = | Undefined = 0 | PendingCompletion = 1 | PendingOcr = 2 | PendingVerification = 3 | Verified = 4 [] [] type ResponseError() = [] member val ErrorCode:String = null with get,set [] member val FieldName:String = null with get,set [] member val Message:String = null with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type ArrayOfResponseError() = inherit ResizeArray() [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ArrayOfResponseError = null with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type BaseResponse() = /// ///The status of the response /// [] member val ResponseStatus:ResponseStatus = null with get,set [] type CountIncompleteClientsData() = inherit BaseResponse() member val NumberOfIncompleteClients:Int64 = new Int64() with get,set [] type IBaseDataResponse = abstract ResponseStatus:ResponseStatus with get,set [] type IHasResponseStatus = abstract ResponseStatus:ResponseStatus with get,set [] [] type CountIncompleteClientsResponse() = [] member val Data:CountIncompleteClientsData = null with get,set [] [] [] type CountIncompleteClients() = inherit BaseRequest() interface IReturn /// ///How many days should have elapsed before counting a Client as incomplete (defaults to 7 days).Set to zero to count all incomplete clients /// [] [] member val DaysIncomplete:Int32 = new Int32() with get,set /// ///Count clients that match the state specified (only PendingCompletion, or PendingVerification). /// [] [] member val State:ClientState = new ClientState() with get,set /// ///Count clients that match the IsValidateMe flag specified (defaults to true). /// [] [] member val IsValidateMe:Boolean = new Boolean() with get,set