bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
12 lines (11 loc) • 338 B
TypeScript
import { ValidatedResponse } from '../../errors/models/ValidatedResponse';
export interface ApplePayWalletRequest {
walletType: string;
validationUrl: string;
domainName: string;
displayName?: string;
}
export interface ApplePayWalletResponse extends ValidatedResponse {
walletType: string;
walletToken: string;
}