mpp-sdk
Version:
SDK to talk to the Memento Payments Platform
18 lines (17 loc) • 426 B
TypeScript
export interface AppleWalletExtensionData {
projectId: string;
email: string;
authToken: AppleWalletExtensionAuthToken;
cards: AppleWalletExtensionCard[];
}
export interface AppleWalletExtensionAuthToken {
token: string;
expiresAt: Date | string;
}
export interface AppleWalletExtensionCard {
identifier: string;
last4: string;
title: string;
cardHolderName: string;
art: string;
}