(* Options:
Date: 2025-04-09 01:13:10
Version: 5.140
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://api.clubmanagercentral.com

//GlobalNamespace: 
//MakeDataContractsExtensible: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//ExportValueTypes: False
IncludeTypes: PaymentMethodService.GetPaymentsByGatewayForProcessingRequest.*
//ExcludeTypes: 
//InitializeCollections: True
//AddNamespaces: 
*)

namespace ClubManager.Api.Services

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<Route("/api/PaymentMethod/GetPaymentsByGatewayForProcessing", "POST,GET")>]
    [<AllowNullLiteral>]
    type GetPaymentsByGatewayForProcessingRequest() = 
        interface IReturn<IEnumerable<PaymentGatewaySubmission>>
        member val IsSandbox:Boolean = new Boolean() with get,set
        member val EndDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set