/* Options: Date: 2025-05-04 23:04:41 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: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Sets the conference member's hold and or mute status. */ // @Route("/sessions/{sessionId}/conference/members/{callSid}", "PATCH") // @Api(Description="Sets the conference member's hold and or mute status.") class UpdateConferenceMemberStatus implements IReturnVoid, IConvertible, IPatch { /** * The ID of the active session */ // @ApiMember(Description="The ID of the active session") String? sessionId; /** * The sid of the active call that is on the voice device */ // @ApiMember(Description="The sid of the active call that is on the voice device") String? callSid; /** * Hold? */ // @ApiMember(Description="Hold?") bool? hold; /** * Mute? */ // @ApiMember(Description="Mute?") bool? mute; UpdateConferenceMemberStatus({this.sessionId,this.callSid,this.hold,this.mute}); UpdateConferenceMemberStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; callSid = json['callSid']; hold = json['hold']; mute = json['mute']; return this; } Map toJson() => { 'sessionId': sessionId, 'callSid': callSid, 'hold': hold, 'mute': mute }; createResponse() {} getTypeName() => "UpdateConferenceMemberStatus"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'UpdateConferenceMemberStatus': TypeInfo(TypeOf.Class, create:() => UpdateConferenceMemberStatus()), });