/* Options: Date: 2025-06-13 07:42:06 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSettingsRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class CoreRS implements IConvertible { String? Code; String? ErrorMessage; String? ErrorStackTrace; CoreRS({this.Code,this.ErrorMessage,this.ErrorStackTrace}); CoreRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Code = json['Code']; ErrorMessage = json['ErrorMessage']; ErrorStackTrace = json['ErrorStackTrace']; return this; } Map toJson() => { 'Code': Code, 'ErrorMessage': ErrorMessage, 'ErrorStackTrace': ErrorStackTrace }; getTypeName() => "CoreRS"; TypeContext? context = _ctx; } // @Route("/core/getsettings") class GetSettingsRQ implements IReturn, IConvertible { String? Key; GetSettingsRQ({this.Key}); GetSettingsRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; return this; } Map toJson() => { 'Key': Key }; createResponse() => CoreRS(); getResponseTypeName() => "CoreRS"; getTypeName() => "GetSettingsRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws.jimsnwa.com', types: { 'CoreRS': TypeInfo(TypeOf.Class, create:() => CoreRS()), 'GetSettingsRQ': TypeInfo(TypeOf.Class, create:() => GetSettingsRQ()), });