/* Options: Date: 2025-10-28 04:14:07 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: PaymentGatewaysDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class PaymentGatewaysDeleteResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=9) ResponseStatus? ResponseStatus; PaymentGatewaysDeleteResponse({this.Id,this.ResponseStatus}); PaymentGatewaysDeleteResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "PaymentGatewaysDeleteResponse"; TypeContext? context = _ctx; } // @Route("/payment_gateways/{Id}", "DELETE") // @DataContract class PaymentGatewaysDelete implements IReturn, IConvertible, IDelete { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; PaymentGatewaysDelete({this.Id}); PaymentGatewaysDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => PaymentGatewaysDeleteResponse(); getResponseTypeName() => "PaymentGatewaysDeleteResponse"; getTypeName() => "PaymentGatewaysDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'PaymentGatewaysDeleteResponse': TypeInfo(TypeOf.Class, create:() => PaymentGatewaysDeleteResponse()), 'PaymentGatewaysDelete': TypeInfo(TypeOf.Class, create:() => PaymentGatewaysDelete()), });