/* Options: Date: 2025-10-28 03:46:14 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: StatusCodesViewQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class StatusCodesView implements IConvertible { int? Id; int? TenantsId; int? StatusTypesId; String? Code; String? Description; String? StatusTypeDescription; StatusCodesView({this.Id,this.TenantsId,this.StatusTypesId,this.Code,this.Description,this.StatusTypeDescription}); StatusCodesView.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; TenantsId = json['TenantsId']; StatusTypesId = json['StatusTypesId']; Code = json['Code']; Description = json['Description']; StatusTypeDescription = json['StatusTypeDescription']; return this; } Map toJson() => { 'Id': Id, 'TenantsId': TenantsId, 'StatusTypesId': StatusTypesId, 'Code': Code, 'Description': Description, 'StatusTypeDescription': StatusTypeDescription }; getTypeName() => "StatusCodesView"; TypeContext? context = _ctx; } // @Route("/statuscodesview", "GET") class StatusCodesViewQuery extends QueryDb implements IReturn>, IGet, IConvertible { StatusCodesViewQuery(); StatusCodesViewQuery.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "StatusCodesViewQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'StatusCodesView': TypeInfo(TypeOf.Class, create:() => StatusCodesView()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'StatusCodesViewQuery': TypeInfo(TypeOf.Class, create:() => StatusCodesViewQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });