(* Options: Date: 2025-12-11 08:53:16 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://legalguard-api-dev.happen.zone //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateClientDetail.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ApiServiceRequest() = /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set /// ///Latitude of the user making this request /// [] member val Latitude:Double = new Double() with get,set /// ///Longitude of the user making this request /// [] member val Longitude:Double = new Double() with get,set [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type IHasDeviceInfo = interface end [] type ClientData() = member val FirstName:String = null with get,set member val Surname:String = null with get,set member val Email:String = null with get,set member val MobileNumber:String = null with get,set member val Address1:String = null with get,set member val Address2:String = null with get,set member val City:String = null with get,set member val DateOfBirth:String = null with get,set member val SourceOfIncome:String = null with get,set [] type ApiServiceResponse() = /// ///Information about the response. /// [] member val Description:String = null with get,set /// ///Heading or summary of the response. /// [] member val Heading:String = null with get,set /// ///Did the intended operation for this response complete successfully? /// [] member val WasSuccessful:Boolean = new Boolean() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] type UpdateClientDetailResponse() = inherit ApiServiceResponse() member val ValidationMessages:ResizeArray = new ResizeArray() with get,set [] type UpdateClientDetail() = inherit ApiServiceRequest() interface IReturn member val ClientData:ClientData = null with get,set