bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
11 lines (10 loc) • 329 B
TypeScript
declare type Environment = 'Production' | 'Sandbox';
export declare class BlueSnapConfig {
environment: Environment;
username: string;
password: string;
apiVersion?: string;
constructor(environment: Environment, username: string, password: string, apiVersion?: string);
getBaseUrl(): string;
}
export {};