Skip to content

Commit

Permalink
Add missing PaymentMethod.UsBankAccount fields
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-stripe committed Apr 7, 2023
1 parent 2738e9d commit 1e87ba7
Showing 1 changed file with 35 additions and 0 deletions.
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.
*/
fingerpint: 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

0 comments on commit 1e87ba7

Please sign in to comment.