/* Options: Date: 2025-02-05 13:53:21 SwiftVersion: 5.0 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: PaymentMethodService.GetPaymentsForProcessingRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/api/PaymentMethod/GetPaymentsForProcessing", "POST,GET") public class GetPaymentsForProcessingRequest : IReturn, Codable { public typealias Return = [PaymentMethodFee] public var isSandbox:Bool? public var paymentGatewayId:Int? public var dueDate:Date? required public init(){} }