/* Options: Date: 2025-04-04 19:03:41 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.GetPaymentsByGatewayForProcessingRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/api/PaymentMethod/GetPaymentsByGatewayForProcessing", "POST,GET") class GetPaymentsByGatewayForProcessingRequest implements IReturn>, IConvertible { bool? IsSandbox; DateTime? EndDate; GetPaymentsByGatewayForProcessingRequest({this.IsSandbox,this.EndDate}); GetPaymentsByGatewayForProcessingRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IsSandbox = json['IsSandbox']; EndDate = JsonConverters.fromJson(json['EndDate'],'DateTime',context!); return this; } Map toJson() => { 'IsSandbox': IsSandbox, 'EndDate': JsonConverters.toJson(EndDate,'DateTime',context!) }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetPaymentsByGatewayForProcessingRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'GetPaymentsByGatewayForProcessingRequest': TypeInfo(TypeOf.Class, create:() => GetPaymentsByGatewayForProcessingRequest()), });