Mayson Monorepo Documentation
    Preparing search index...
    interface ReceivedDebitCreateParams {
        amount: number;
        currency: string;
        financial_account: string;
        network: "ach";
        description?: string;
        expand?: string[];
        initiating_payment_method_details?: Stripe.TestHelpers.Treasury.ReceivedDebitCreateParams.InitiatingPaymentMethodDetails;
    }
    Index

    Properties

    amount: number

    Amount (in cents) to be transferred.

    currency: string

    Three-letter ISO currency code, in lowercase. Must be a supported currency.

    financial_account: string

    The FinancialAccount to pull funds from.

    network: "ach"

    Specifies the network rails to be used. If not set, will default to the PaymentMethod's preferred network. See the docs to learn more about money movement timelines for each network type.

    description?: string

    An arbitrary string attached to the object. Often useful for displaying to users.

    expand?: string[]

    Specifies which fields in the response should be expanded.

    Initiating payment method details for the object.