/* Options: Date: 2025-12-06 05:26:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: KeepAliveRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class KeepAliveResponse implements IConvertible { ResponseStatus? ResponseStatus; KeepAliveResponse({this.ResponseStatus}); KeepAliveResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "KeepAliveResponse"; TypeContext? context = _ctx; } // @Route("/v1/KeepAlive", "GET") class KeepAliveRequest implements IReturn, IConvertible, IGet { KeepAliveRequest(); KeepAliveRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => KeepAliveResponse(); getResponseTypeName() => "KeepAliveResponse"; getTypeName() => "KeepAliveRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'KeepAliveResponse': TypeInfo(TypeOf.Class, create:() => KeepAliveResponse()), 'KeepAliveRequest': TypeInfo(TypeOf.Class, create:() => KeepAliveRequest()), });