/* Options: Date: 2025-05-04 23:32:17 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: ConferenceSession.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Moves the specified session into a conference room by name */ // @Route("/sessions/{sessionId}/conference", "POST") // @Api(Description="Moves the specified session into a conference room by name") class ConferenceSession implements IReturnVoid, IPost, IConvertible { /** * The ID of the session that is being moved */ // @ApiMember(Description="The ID of the session that is being moved") 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; /** * The name of the conference room */ // @ApiMember(Description="The name of the conference room") String? queueName; ConferenceSession({this.sessionId,this.callSid,this.queueName}); ConferenceSession.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; callSid = json['callSid']; queueName = json['queueName']; return this; } Map toJson() => { 'sessionId': sessionId, 'callSid': callSid, 'queueName': queueName }; createResponse() {} getTypeName() => "ConferenceSession"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'ConferenceSession': TypeInfo(TypeOf.Class, create:() => ConferenceSession()), });