/* Options: Date: 2025-06-19 23:48:49 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MarkMessagesRead.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/messages/read", Verbs="POST") public static class MarkMessagesRead implements IReturnVoid { /** * The account ID of the messages to mark read */ @ApiMember(Description="The account ID of the messages to mark read") public String accountId = null; /** * The IDs of the messages to mark read */ @ApiMember(Description="The IDs of the messages to mark read") public ArrayList messageIds = null; /** * The date after which messages should be marked read */ @ApiMember(Description="The date after which messages should be marked read") public String afterDate = null; public String getAccountId() { return accountId; } public MarkMessagesRead setAccountId(String value) { this.accountId = value; return this; } public ArrayList getMessageIds() { return messageIds; } public MarkMessagesRead setMessageIds(ArrayList value) { this.messageIds = value; return this; } public String getAfterDate() { return afterDate; } public MarkMessagesRead setAfterDate(String value) { this.afterDate = value; return this; } } }