(* Options: Date: 2025-12-06 08:59:11 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ReadAllMessages.* //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 NotificationMessageAttachment() = member val IsImage:Boolean = new Boolean() with get,set member val IsPdf:Boolean = new Boolean() with get,set member val IsWord:Boolean = new Boolean() with get,set member val IsExcel:Boolean = new Boolean() with get,set member val FileName:String = null with get,set member val ThumbnailUrl:String = null with get,set member val FileUrl:String = null with get,set [] type NotificationMessageData() = member val Title:String = null with get,set member val Content:String = null with get,set member val SentBy:String = null with get,set member val SystemUserMessageId:Int32 = new Int32() with get,set member val DateSent:String = null with get,set member val Comment:String = null with get,set member val HasComment:Boolean = new Boolean() with get,set member val CommentDate:String = null with get,set member val HasAttachments:Boolean = new Boolean() with get,set member val AttachmentList:ResizeArray = new ResizeArray() with get,set member val HasRead:Boolean = new Boolean() with get,set [] 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 GetNotificationMessageResponse() = inherit ApiServiceResponse() member val Messages:ResizeArray = new ResizeArray() with get,set member val UnreadCount:Int32 = new Int32() with get,set [] [] type ReadAllMessages() = inherit ApiServiceRequest() interface IReturn