@sumup/sdk
    Preparing search index...

    Type Alias BankAccountPayload

    type BankAccountPayload = {
        account_category?: "PERSONAL" | "BUSINESS";
        account_holder_name: string;
        account_number?: string;
        account_type?: "CURRENT" | "SAVINGS";
        bank_code?: string;
        branch_code?: string;
        check_digit?: string;
        iban: string;
        primary?: boolean;
        status?: "OPEN";
        swift: string;
    }
    Index

    Properties

    account_category?: "PERSONAL" | "BUSINESS"

    Determines if this bank account is business or personal.

    account_holder_name: string

    Account holder name

    account_number?: string

    Account number

    account_type?: "CURRENT" | "SAVINGS"

    Type of the account.

    bank_code?: string

    Bank code

    branch_code?: string

    Branch code

    check_digit?: string

    Check digit

    iban: string

    IBAN

    primary?: boolean

    Determines if this bank account will be primary. Default is false

    status?: "OPEN"

    Determines the bank account status.

    swift: string

    SWIFT code