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