/* Options: Date: 2025-05-04 23:38:12 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: MarkMessagesRead.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/messages/read", "POST") public class MarkMessagesRead : IReturnVoid, Codable { /** * The account ID of the messages to mark read */ // @ApiMember(Description="The account ID of the messages to mark read") public var accountId:String? /** * The IDs of the messages to mark read */ // @ApiMember(Description="The IDs of the messages to mark read") public var messageIds:[String]? /** * The date after which messages should be marked read */ // @ApiMember(Description="The date after which messages should be marked read") public var afterDate:String? required public init(){} }