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