/* Options: Date: 2026-01-13 14:52:46 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: LiveAnswerGetLiveKitConfig.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class LiveAnswerLiveKitConfig implements IConvertible { String? message; LiveAnswerLiveKitConfig({this.message}); LiveAnswerLiveKitConfig.fromJson(Map json) { fromMap(json); } fromMap(Map json) { message = json['message']; return this; } Map toJson() => { 'message': message }; getTypeName() => "LiveAnswerLiveKitConfig"; TypeContext? context = _ctx; } // @Route("/nodes/live-answer/livekit/config", "GET") class LiveAnswerGetLiveKitConfig implements IReturn, IConvertible, IGet { String? accountSid; String? callSid; LiveAnswerGetLiveKitConfig({this.accountSid,this.callSid}); LiveAnswerGetLiveKitConfig.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountSid = json['accountSid']; callSid = json['callSid']; return this; } Map toJson() => { 'accountSid': accountSid, 'callSid': callSid }; createResponse() => LiveAnswerLiveKitConfig(); getResponseTypeName() => "LiveAnswerLiveKitConfig"; getTypeName() => "LiveAnswerGetLiveKitConfig"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'LiveAnswerLiveKitConfig': TypeInfo(TypeOf.Class, create:() => LiveAnswerLiveKitConfig()), 'LiveAnswerGetLiveKitConfig': TypeInfo(TypeOf.Class, create:() => LiveAnswerGetLiveKitConfig()), });