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