(* Options: Date: 2025-03-15 05:04:19 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: GetValidIdNotes.* //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 /// [] [] member val ApiUserId:String = null with get,set /// ///The API User Key provided by us when you signed up to use our API /// [] [] member val ApiUserKey: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 GetValidIdNotesRequest() = member val Id:Int64 = new Int64() with get,set member val SubUserName:String = null 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 [] 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 SearchNote() = member val Name:String = null with get,set member val Date:DateTime = new DateTime() with get,set member val Content:String = null with get,set [] type ArrayOfSearchNote() = inherit ResizeArray() [] type GetValidIdNotesData() = inherit BaseResponse() member val Success:Boolean = new Boolean() with get,set member val Notes:ArrayOfSearchNote = null with get,set member val Id:Int64 = new Int64() with get,set [] type ISearchNoteRequest = abstract Id:Int64 with get,set abstract SubUserName:String with get,set [] type IBaseDataResponse = abstract ResponseStatus:ResponseStatus with get,set [] type IHasResponseStatus = abstract ResponseStatus:ResponseStatus with get,set [] [] type GetValidIdNotesResponse() = [] member val Data:GetValidIdNotesData = null with get,set [] [] [] type GetValidIdNotes() = inherit BaseRequest() interface IReturn [] member val Request:GetValidIdNotesRequest = null with get,set