/* Options: Date: 2025-09-14 05:54:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.trackunit.com/public //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeletePoint.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @DataContract class DeletePointResponse implements IConvertible { // @DataMember ResponseStatus? responseStatus; DeletePointResponse({this.responseStatus}); DeletePointResponse.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() => "DeletePointResponse"; TypeContext? context = _ctx; } // @Route("/DeletePoint", "GET POST") // @Route("/DeletePoint/{Id}", "GET POST") // @Route("/Point", "DELETE") // @Route("/Point/{Id}", "DELETE") // @DataContract class DeletePoint implements IReturn, IConvertible, IPost { // @DataMember String? id; DeletePoint({this.id}); DeletePoint.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => DeletePointResponse(); getResponseTypeName() => "DeletePointResponse"; getTypeName() => "DeletePoint"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.trackunit.com', types: { 'DeletePointResponse': TypeInfo(TypeOf.Class, create:() => DeletePointResponse()), 'DeletePoint': TypeInfo(TypeOf.Class, create:() => DeletePoint()), });