/* Options: Date: 2026-01-09 15:00:13 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LiveAnswerLiveKitDialCallback.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/nodes/live-answer/livekit/dial") class LiveAnswerLiveKitDialCallback implements IConvertible, IPost { String? sessionId; String? callSid; LiveAnswerLiveKitDialCallback({this.sessionId,this.callSid}); LiveAnswerLiveKitDialCallback.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; callSid = json['callSid']; return this; } Map toJson() => { 'sessionId': sessionId, 'callSid': callSid }; getTypeName() => "LiveAnswerLiveKitDialCallback"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'evovoice.io', types: { 'LiveAnswerLiveKitDialCallback': TypeInfo(TypeOf.Class, create:() => LiveAnswerLiveKitDialCallback()), });