""" Options: Date: 2025-05-04 22:02:31 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: UpdateConferenceMemberStatus.* #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("/sessions/{sessionId}/conference/members/{callSid}", "PATCH") # @Api(Description="Sets the conference member's hold and or mute status.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UpdateConferenceMemberStatus(IReturnVoid): """ Sets the conference member's hold and or mute status. """ # @ApiMember(Description="The ID of the active session") session_id: Optional[str] = None """ The ID of the active session """ # @ApiMember(Description="The sid of the active call that is on the voice device") call_sid: Optional[str] = None """ The sid of the active call that is on the voice device """ # @ApiMember(Description="Hold?") hold: Optional[bool] = None """ Hold? """ # @ApiMember(Description="Mute?") mute: Optional[bool] = None """ Mute? """