/* Options: Date: 2025-10-28 00:55:53 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: CustomActionsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/custom_actions", "GET") // @DataContract class CustomActionsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? TenantsId; // @DataMember(Order=3) int? ActionsId; // @DataMember(Order=4) String? FormMetaData; // @DataMember(Order=5) String? ResultData; CustomActionsLookup({this.TenantsId,this.ActionsId,this.FormMetaData,this.ResultData}); CustomActionsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TenantsId = json['TenantsId']; ActionsId = json['ActionsId']; FormMetaData = json['FormMetaData']; ResultData = json['ResultData']; return this; } Map toJson() => { 'TenantsId': TenantsId, 'ActionsId': ActionsId, 'FormMetaData': FormMetaData, 'ResultData': ResultData }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "CustomActionsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'CustomActionsLookupResponse': TypeInfo(TypeOf.Class, create:() => CustomActionsLookupResponse()), 'CustomActionsLookup': TypeInfo(TypeOf.Class, create:() => CustomActionsLookup()), });