/* Options: Date: 2025-05-04 23:59:17 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MarkMessagesRead.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } // @Route("/messages/read", "POST") export class MarkMessagesRead implements IReturnVoid { /** @description The account ID of the messages to mark read */ // @ApiMember(Description="The account ID of the messages to mark read") public accountId: string; /** @description The IDs of the messages to mark read */ // @ApiMember(Description="The IDs of the messages to mark read") public messageIds: string[]; /** @description The date after which messages should be marked read */ // @ApiMember(Description="The date after which messages should be marked read") public afterDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'MarkMessagesRead'; } public getMethod() { return 'POST'; } public createResponse() {} }