(* Options: Date: 2024-06-17 22:02:49 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ResendMessage.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type ICompany = abstract CompanyId:Nullable with get,set [] type MessageLogQueryResponse() = /// ///The message log id /// [] member val Id:Int32 = new Int32() with get,set /// ///The booking id for the message (if connected to a booking). /// [] member val BookingId:Nullable = new Nullable() with get,set /// ///The message receiver. Either a email or a mobile phone number. /// [] member val Receiver:String = null with get,set /// ///Message Title. /// [] member val MessageTitle:String = null with get,set /// ///Message Storage Url. /// [] member val StorageUrl:String = null with get,set /// ///Message Body. /// [] member val MessageBody:String = null with get,set /// ///When message was created. /// [] member val Created:DateTime = new DateTime() with get,set /// ///When the message will be sent. /// [] member val ToSendDate:DateTime = new DateTime() with get,set /// ///When the message was sent. /// [] member val SentDate:Nullable = new Nullable() with get,set /// ///If Message is sent /// [] member val Sent:Boolean = new Boolean() with get,set /// ///Number of retries to send the message /// [] member val MessageRetries:Int32 = new Int32() with get,set /// ///Send Method. 1 = Email, 2 = SMS /// [] member val SendMethodId:Int32 = new Int32() with get,set [] [] [] [] type ResendMessage() = interface IReturn /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Message Id /// [] member val Id:Int32 = new Int32() with get,set