Skip to content

Commit

Permalink
add networks param (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelly-stripe authored Aug 13, 2024
1 parent 926fa98 commit 7a537ee
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions types/api/payment-methods.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,21 @@ export namespace PaymentMethod {
*/
last4: string;

/**
* Contains information about card networks that can be used to process the payment.
*/
networks: {
/**
* The preferred network for co-branded cards.
*/
preferred: string | null;

/**
* All available networks for the card.
*/
available: string[];
} | null;

/**
* Contains details on how this Card maybe be used for 3D Secure authentication.
*/
Expand Down

0 comments on commit 7a537ee

Please sign in to comment.