/* Options: Date: 2025-10-27 21:37:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StatusTypesLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/status_types", "GET") // @DataContract class StatusTypesLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? TenantsId; // @DataMember(Order=3) String? Description; StatusTypesLookup({this.TenantsId,this.Description}); StatusTypesLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenantsId = json['TenantsId']; Description = json['Description']; return this; } Map toJson() => { 'TenantsId': TenantsId, 'Description': Description }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "StatusTypesLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'StatusTypesLookupResponse': TypeInfo(TypeOf.Class, create:() => StatusTypesLookupResponse()), 'StatusTypesLookup': TypeInfo(TypeOf.Class, create:() => StatusTypesLookup()), });