export class SettleFundsTransferRequest { include?: string fundsTransferID: string data: { type?: string // 'funds-transfers' attributes: { 'comments-1': string // <= 60 characters 'settlement-details': string 'currency-type'?: string // (All Currencies) Enum: "AUD" "CAD" "EUR" "GBP" "JPY" "USD" 'clears-on'?: string // (Date (within 10 days)) 'funds-transfer-type'?: string // (Funds Transfer Types) Enum: "ach" "check" "credit_card" "signet" "wire" "wire_international" 'comments-2'?: string // <= 60 characters 'comments-3'?: string // <= 60 characters 'comments-4'?: string // <= 60 characters amount?: string // (Decimal > 0) > 0 'funds-source-name'?: string } } }