(* Options: Date: 2025-12-12 22:05:35 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CheckGuest.* //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 UserCustomFieldData() = member val Id:Guid = new Guid() with get,set member val Value:String = null with get,set member val Name:String = null with get,set member val Optional:Boolean = new Boolean() with get,set [] type GuestData() = member val Name:String = null with get,set member val EmailAddress:String = null with get,set member val MobileNumber:String = null with get,set member val UserCustomFields:ResizeArray = new ResizeArray() with get,set member val IsAlreadyUser:Boolean = new Boolean() with get,set member val SystemUserId:Int32 = new Int32() with get,set [] 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 ApiServiceResponse() = member val Description:String = null with get,set member val Heading:String = null with get,set member val WasSuccessful:Boolean = new Boolean() with get,set member val ModelState:Object = null with get,set [] type CheckGuestResponse() = inherit ApiServiceResponse() member val AlreadyUser:Boolean = new Boolean() with get,set member val SystemUserId:Int32 = new Int32() with get,set [] type CheckGuest() = inherit ApiServiceRequest() interface IReturn member val GuestData:GuestData = null with get,set