(* Options: Date: 2025-06-10 05:53:32 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sanctionssearch.com/v1 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateSearchStatus.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Nugo.SanctionsSearch.Api.ServiceModel.Operations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type Authentication() = /// ///The API User ID that will authenticate your request /// [] [] member val ApiUserId:String = null with get,set /// ///The API User Key that will authenticate your request /// [] [] member val ApiUserKey:String = null with get,set [] type IBaseRequest = abstract Authentication:Authentication with get,set [] [] type UpdateSearchStatusRequest() = /// ///The ID of the sanctions search that is being resolved/updated. /// [] [] member val Id:Int64 = new Int64() with get,set /// ///Whether the search results did contain the client. Set this to "true" if the client WAS found in the search results. /// [] [true\" if the client WAS found in the search results.", IsRequired=true)>] member val ClientInResults:Boolean = new Boolean() with get,set /// ///Whether the search results did not contain the client. Set this to "true" if the client WAS NOT found in the search results. /// [] [true\" if the client WAS NOT found in the search results.", IsRequired=true)>] member val ClientNotInResults:Boolean = new Boolean() with get,set [] [] 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 [] 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 [] [] type UpdateSearchStatusData() = /// ///Response status object /// [] [] member val ResponseStatus:ResponseStatus = null with get,set [] type IAuthentication = abstract ApiUserId:String with get,set abstract ApiUserKey:String with get,set abstract UserId:String with get,set [] type IBaseDataResponse = abstract ResponseStatus:ResponseStatus with get,set [] type IHasResponseStatus = abstract ResponseStatus:ResponseStatus with get,set [] [] type UpdateSearchStatusResponse() = /// ///Response object /// [] [] member val Data:UpdateSearchStatusData = null with get,set /// ///Update/resolve a sanctions search /// [] [] [Data.ResponseStatus.Message\" field is \"Success\".", StatusCode=200)>] [] [] type UpdateSearchStatus() = interface IReturn /// ///Authentication object /// [] [] member val Authentication:Authentication = null with get,set /// ///Request object /// [] [] member val Request:UpdateSearchStatusRequest = null with get,set