@mollie/api-client
Version:
Official Mollie API client for Node
13 lines (12 loc) • 340 B
TypeScript
export interface ApplePaySessionData {
epochTimestamp: number;
expiresAt: number;
merchantSessionIdentifier: string;
nonce: string;
merchantIdentifier: string;
domainName: string;
displayName: string;
signature: string;
}
type ApplePaySession = Readonly<ApplePaySessionData>;
export default ApplePaySession;