/* Options: Date: 2026-05-08 19:21:24 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://tanchinhdo-api-sandbox.adnx.vn //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PingRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ping") // @Route("/health") class PingRequest implements IReturn, IConvertible, IPost { PingRequest(); PingRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => dynamic(); getResponseTypeName() => "dynamic"; getTypeName() => "PingRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'tanchinhdo_api_sandbox.adnx.vn', types: { 'PingRequest': TypeInfo(TypeOf.Class, create:() => PingRequest()), });