bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
13 lines (12 loc) • 371 B
TypeScript
import { ValidatedResponse } from '../../errors/models/ValidatedResponse';
export interface MasterpassWalletRequest {
walletType: string;
originUrl: string;
returnUrl: string;
}
export interface MasterpassWalletResponse extends ValidatedResponse {
walletType: string;
walletToken: string;
merchantCheckoutId: string;
allowCardTypes: string;
}