/* Options: Date: 2025-12-06 12:17:17 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IntendedMatch.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/intended_match", "GET") class IntendedMatch implements IReturn>, IConvertible, IGet { int? appUserId; IntendedMatch({this.appUserId}); IntendedMatch.fromJson(Map json) { fromMap(json); } fromMap(Map json) { appUserId = json['appUserId']; return this; } Map toJson() => { 'appUserId': appUserId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "IntendedMatch"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'IntendedMatch': TypeInfo(TypeOf.Class, create:() => IntendedMatch()), });