/* Options: Date: 2025-05-05 01:38:07 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: RecordSession.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Start call recording for the specified session. If already started, this will not do anything */ // @Route("/sessions/{sessionId}/record", "POST") // @Api(Description="Start call recording for the specified session. If already started, this will not do anything") class RecordSession implements IReturnVoid, IPost, IConvertible { String? sessionId; RecordSession({this.sessionId}); RecordSession.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sessionId = json['sessionId']; return this; } Map toJson() => { 'sessionId': sessionId }; createResponse() {} getTypeName() => "RecordSession"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'RecordSession': TypeInfo(TypeOf.Class, create:() => RecordSession()), });