We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4935e1 commit 811a69aCopy full SHA for 811a69a
src/payment/payment.ts
@@ -4,7 +4,7 @@ export default interface Payment {
4
paymentData: PaymentInstrument & PaymentInstrumentMeta;
5
}
6
7
-export type PaymentInstrument = CreditCardInstrument | NonceInstrument | VaultedInstrument;
+export type PaymentInstrument = CreditCardInstrument | NonceInstrument | VaultedInstrument | CryptogramInstrument;
8
9
export interface PaymentInstrumentMeta {
10
deviceSessionId?: string;
@@ -32,3 +32,14 @@ export interface VaultedInstrument {
32
instrumentId: string;
33
cvv?: number;
34
35
+
36
+export interface CryptogramInstrument {
37
+ cryptogramId: string;
38
+ eci: string;
39
+ transactionId?: string;
40
+ ccExpiry: {
41
+ month: string,
42
+ year: string,
43
+ };
44
+ ccNumber: string;
45
+}
0 commit comments