Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing PaymentMethod.UsBankAccount fields #442

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions types/api/payment-methods.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,41 @@ export namespace PaymentMethod {
* Account type: checkings or savings. Defaults to checking if omitted.
*/
account_type: string;

/**
* The name of the bank.
*/
bank_name: string;

/**
* The ID of the Financial Connections Account used to create the payment method.
*/
financial_connections_account: string;

/**
* Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
*/
fingerprint: string;

/**
* Last four digits of the bank account number.
*/
last4: string;

/**
* Contains information about US bank account networks that can be used.
*/
networks: {
/**
* The preferred network.
*/
preferred: string;

/**
* All supported networks.
*/
supported: string[];
};
}
}

Expand Down