/* Options: Date: 2025-05-05 00:36:24 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MarkMessagesRead.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/messages/read", Verbs="POST") open class MarkMessagesRead : IReturnVoid { /** * The account ID of the messages to mark read */ @ApiMember(Description="The account ID of the messages to mark read") open var accountId:String? = null /** * The IDs of the messages to mark read */ @ApiMember(Description="The IDs of the messages to mark read") open var messageIds:ArrayList? = null /** * The date after which messages should be marked read */ @ApiMember(Description="The date after which messages should be marked read") open var afterDate:String? = null }