From 7a537ee35ebde68bddb3fd9be478a47e495eb31e Mon Sep 17 00:00:00 2001 From: maxwelly-stripe <139278188+maxwelly-stripe@users.noreply.github.com> Date: Tue, 13 Aug 2024 11:37:10 -0700 Subject: [PATCH] add networks param (#637) --- types/api/payment-methods.d.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/types/api/payment-methods.d.ts b/types/api/payment-methods.d.ts index b6d03546..6befb6d8 100644 --- a/types/api/payment-methods.d.ts +++ b/types/api/payment-methods.d.ts @@ -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. */