Mayson Monorepo Documentation
    Preparing search index...

    Each customer has a balance that is automatically applied to future invoices and payments using the customer_balance payment method. Customers can fund this balance by initiating a bank transfer to any account in the financial_addresses field. Related guide: Customer balance funding instructions

    interface FundingInstructions {
        object: "funding_instructions";
        bank_transfer: Stripe.FundingInstructions.BankTransfer;
        currency: string;
        funding_type: "bank_transfer";
        livemode: boolean;
    }
    Index

    Properties

    object: "funding_instructions"

    String representing the object's type. Objects of the same type share the same value.

    currency: string

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

    funding_type: "bank_transfer"

    The funding_type of the returned instructions

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.