bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
15 lines (14 loc) • 337 B
TypeScript
/**
* Contains wallet information for Apple Pay
*/
export interface ApplePayRequest {
encodedPaymentToken: string;
}
export interface ApplePayResponse {
cardLastFourDigits: string;
cardType: string;
cardSubType: string;
dpanExpirationMonth: string;
dpanExpirationYear: string;
dpanLastFourDigits: string;
}