""" Options: Date: 2025-05-04 22:50:18 Version: 8.71 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://team.evovoice.io #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: MarkMessagesRead.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Route("/messages/read", "POST") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class MarkMessagesRead(IReturnVoid): # @ApiMember(Description="The account ID of the messages to mark read") account_id: Optional[str] = None """ The account ID of the messages to mark read """ # @ApiMember(Description="The IDs of the messages to mark read") message_ids: Optional[List[str]] = None """ The IDs of the messages to mark read """ # @ApiMember(Description="The date after which messages should be marked read") after_date: Optional[str] = None """ The date after which messages should be marked read """