/* Options: Date: 2025-08-05 02:40:49 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteService.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/apiservice/delete/{Route}/{UrlName}", "DELETE") class DeleteService implements IConvertible, IDelete { String? UrlName; String? Route; DeleteService({this.UrlName,this.Route}); DeleteService.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UrlName = json['UrlName']; Route = json['Route']; return this; } Map toJson() => { 'UrlName': UrlName, 'Route': Route }; getTypeName() => "DeleteService"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DeleteService': TypeInfo(TypeOf.Class, create:() => DeleteService()), });