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