(* Options: Date: 2025-05-05 01:11:56 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: MarkMessagesRead.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Messaging open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type MarkMessagesRead() = interface IReturnVoid /// ///The account ID of the messages to mark read /// [] member val AccountId:String = null with get,set /// ///The IDs of the messages to mark read /// [] member val MessageIds:ResizeArray = null with get,set /// ///The date after which messages should be marked read /// [] member val AfterDate:String = null with get,set