/* Options: Date: 2025-12-11 15:58:10 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestDataRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/test-data", "POST") class TestDataRequest implements IConvertible, IPost { String? type; String? value; int? id; TestDataRequest({this.type,this.value,this.id}); TestDataRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { type = json['type']; value = json['value']; id = json['id']; return this; } Map toJson() => { 'type': type, 'value': value, 'id': id }; getTypeName() => "TestDataRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'catalog_jobs_dev.power.dev', types: { 'TestDataRequest': TypeInfo(TypeOf.Class, create:() => TestDataRequest()), });