/* Options: Date: 2025-05-05 00:51:04 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: EndSession.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Ends the specified session */ // @Route("/sessions/{sessionId}", "DELETE") // @Api(Description="Ends the specified session") class EndSession implements IReturnVoid, IDelete, IConvertible { /** * The specified session ID */ // @ApiMember(Description="The specified session ID") String? sessionId; /** * The local call ID */ // @ApiMember(Description="The local call ID") String? callSid; EndSession({this.sessionId,this.callSid}); EndSession.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; callSid = json['callSid']; return this; } Map toJson() => { 'sessionId': sessionId, 'callSid': callSid }; createResponse() {} getTypeName() => "EndSession"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'EndSession': TypeInfo(TypeOf.Class, create:() => EndSession()), });