/* Options: Date: 2025-02-05 13:54:20 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentMethodService.GetPaymentsForProcessingRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/PaymentMethod/GetPaymentsForProcessing", "POST,GET") class GetPaymentsForProcessingRequest implements IReturn>, IConvertible { bool? IsSandbox; int? PaymentGatewayId; DateTime? DueDate; GetPaymentsForProcessingRequest({this.IsSandbox,this.PaymentGatewayId,this.DueDate}); GetPaymentsForProcessingRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IsSandbox = json['IsSandbox']; PaymentGatewayId = json['PaymentGatewayId']; DueDate = JsonConverters.fromJson(json['DueDate'],'DateTime',context!); return this; } Map toJson() => { 'IsSandbox': IsSandbox, 'PaymentGatewayId': PaymentGatewayId, 'DueDate': JsonConverters.toJson(DueDate,'DateTime',context!) }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetPaymentsForProcessingRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'GetPaymentsForProcessingRequest': TypeInfo(TypeOf.Class, create:() => GetPaymentsForProcessingRequest()), });