/* Options: Date: 2025-11-04 22:58:23 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: DeleteAISession.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Delete the specified session */ // @Route("/ai/sessions/{sessionId}", "DELETE") // @Api(Description="Delete the specified session") class DeleteAISession implements IReturnVoid, IDelete, IConvertible { /** * The ID of the session to delete */ // @ApiMember(Description="The ID of the session to delete") String? sessionId; DeleteAISession({this.sessionId}); DeleteAISession.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; return this; } Map toJson() => { 'sessionId': sessionId }; createResponse() {} getTypeName() => "DeleteAISession"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'evovoice.io', types: { 'DeleteAISession': TypeInfo(TypeOf.Class, create:() => DeleteAISession()), });