(* Options: Date: 2025-12-06 06:17:15 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://1fetch.api.client.prod.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CalculateDistance.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ClientServiceModel 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 [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type ILogRequest = interface end [] type Coordinate() = /// ///The Latitude /// [] member val Latitude:Double = new Double() with get,set /// ///The Longitude /// [] member val Longitude:Double = new Double() 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 [] type CalculateDistanceResponse() = inherit ApiServiceResponse() /// ///A list of the distances between each point, returned in order that the points were provided /// [] member val PointDistances:ResizeArray = new ResizeArray() with get,set /// ///The total distance between all points /// [] member val TotalDistance:Decimal = new Decimal() with get,set [] [] type CalculateDistance() = inherit ApiServiceRequest() interface IReturn /// ///Array of coordinates /// [] member val Coordinates:ResizeArray = new ResizeArray() with get,set