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 f9c3980 commit 69cc077Copy full SHA for 69cc077
src/types/apiInterfaces.ts
@@ -442,9 +442,24 @@ export interface IEpsGateways {
442
export interface IEpsGateway {
443
auth_token: string;
444
currency: string;
445
+ vaulted_payment_methods?: Array<IVaultedPaymentMethod>;
446
group_label?: string;
447
}
448
449
+export interface IVaultedPaymentMethod {
450
+ public_id: string;
451
+ eps_token: string;
452
+ tender_type: string;
453
+ tender: ITender;
454
+}
455
+
456
+export interface ITender {
457
+ brand: string;
458
+ last4: string;
459
+ exp_month: number;
460
+ exp_year: number;
461
462
463
export interface ICheckoutProcess{
464
company_name_option: string,
465
phone_number_required: boolean,
0 commit comments