/* Options: Date: 2025-05-04 22:52:11 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: GetEmbedData.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class EmbedData implements IConvertible { String? endpointId; String? accessToken; EmbedData({this.endpointId,this.accessToken}); EmbedData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { endpointId = json['endpointId']; accessToken = json['accessToken']; return this; } Map toJson() => { 'endpointId': endpointId, 'accessToken': accessToken }; getTypeName() => "EmbedData"; TypeContext? context = _ctx; } // @Route("/embed/data") class GetEmbedData implements IReturn, IConvertible, IGet { String? phoneNumber; String? endpointId; GetEmbedData({this.phoneNumber,this.endpointId}); GetEmbedData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { phoneNumber = json['phoneNumber']; endpointId = json['endpointId']; return this; } Map toJson() => { 'phoneNumber': phoneNumber, 'endpointId': endpointId }; createResponse() => EmbedData(); getResponseTypeName() => "EmbedData"; getTypeName() => "GetEmbedData"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'EmbedData': TypeInfo(TypeOf.Class, create:() => EmbedData()), 'GetEmbedData': TypeInfo(TypeOf.Class, create:() => GetEmbedData()), });