@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
11 lines (10 loc) • 438 B
TypeScript
export declare class PaywayConfig {
readonly bankAccountId: string;
readonly merchantId: string;
readonly secretKey: string;
readonly publishableKey: string;
readonly apiRoot: string;
readonly responseType: 'json' | 'xml';
[key: string]: string | undefined;
constructor(bankAccountId: string, merchantId: string, secretKey: string, publishableKey: string, apiRoot: string, responseType: 'json' | 'xml');
}