You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: types/2020-03-02/Charges.d.ts
+3-3
Original file line number
Diff line number
Diff line change
@@ -687,7 +687,7 @@ declare module 'stripe' {
687
687
moto?: boolean|null;
688
688
689
689
/**
690
-
* Identifies which network this charge was processed on. Can be `amex`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
690
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
691
691
*/
692
692
network: string|null;
693
693
@@ -942,7 +942,7 @@ declare module 'stripe' {
942
942
last4: string|null;
943
943
944
944
/**
945
-
* Identifies which network this charge was processed on. Can be `amex`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
945
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
946
946
*/
947
947
network: string|null;
948
948
@@ -1182,7 +1182,7 @@ declare module 'stripe' {
1182
1182
last4: string|null;
1183
1183
1184
1184
/**
1185
-
* Identifies which network this charge was processed on. Can be `amex`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
1185
+
* Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `interac`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
Copy file name to clipboardexpand all lines: types/2020-03-02/PaymentIntents.d.ts
+68
Original file line number
Diff line number
Diff line change
@@ -371,6 +371,11 @@ declare module 'stripe' {
371
371
*/
372
372
installments: Card.Installments|null;
373
373
374
+
/**
375
+
* Selected network to process this PaymentIntent on. Depends on the available networks of the card attached to the PaymentIntent. Can be only set confirm-time.
376
+
*/
377
+
network: Card.Network|null;
378
+
374
379
/**
375
380
* We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
* Selected network to process this PaymentIntent on. Depends on the available networks of the card attached to the PaymentIntent. Can be only set confirm-time.
765
+
*/
766
+
network?: Card.Network;
767
+
746
768
/**
747
769
* We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
748
770
*/
@@ -785,6 +807,18 @@ declare module 'stripe' {
785
807
}
786
808
}
787
809
810
+
typeNetwork=
811
+
|'amex'
812
+
|'cartes_bancaires'
813
+
|'diners'
814
+
|'discover'
815
+
|'interac'
816
+
|'jcb'
817
+
|'mastercard'
818
+
|'unionpay'
819
+
|'unknown'
820
+
|'visa';
821
+
788
822
typeRequestThreeDSecure='any'|'automatic';
789
823
}
790
824
}
@@ -1003,6 +1037,11 @@ declare module 'stripe' {
1003
1037
*/
1004
1038
moto?: boolean;
1005
1039
1040
+
/**
1041
+
* Selected network to process this PaymentIntent on. Depends on the available networks of the card attached to the PaymentIntent. Can be only set confirm-time.
1042
+
*/
1043
+
network?: Card.Network;
1044
+
1006
1045
/**
1007
1046
* We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
1008
1047
*/
@@ -1045,6 +1084,18 @@ declare module 'stripe' {
1045
1084
}
1046
1085
}
1047
1086
1087
+
typeNetwork=
1088
+
|'amex'
1089
+
|'cartes_bancaires'
1090
+
|'diners'
1091
+
|'discover'
1092
+
|'interac'
1093
+
|'jcb'
1094
+
|'mastercard'
1095
+
|'unionpay'
1096
+
|'unknown'
1097
+
|'visa';
1098
+
1048
1099
typeRequestThreeDSecure='any'|'automatic';
1049
1100
}
1050
1101
}
@@ -1379,6 +1430,11 @@ declare module 'stripe' {
1379
1430
*/
1380
1431
moto?: boolean;
1381
1432
1433
+
/**
1434
+
* Selected network to process this PaymentIntent on. Depends on the available networks of the card attached to the PaymentIntent. Can be only set confirm-time.
1435
+
*/
1436
+
network?: Card.Network;
1437
+
1382
1438
/**
1383
1439
* We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
0 commit comments