/* Options: Date: 2026-01-14 10:41:28 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://iso-api.adumen.com //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: 'iso_api.adumen.com', types: { 'TestDataRequest': TypeInfo(TypeOf.Class, create:() => TestDataRequest()), });