bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
14 lines (13 loc) • 338 B
TypeScript
import { ValidatedResponse } from '../../errors/models/ValidatedResponse';
export interface OnboardApplePayRequest {
walletType: string;
applePay: {
domains: string[];
};
}
export interface OnboardApplePayResponse extends ValidatedResponse {
walletType: string;
applePay: {
domains: string[];
};
}