bc-payments-sdk
Version:
BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.
12 lines (11 loc) • 351 B
TypeScript
export declare class BCException extends Error {
httpResponseCode: any;
status: any;
errorCode: string;
errorMessage: string;
constructor(httpResponseCode: any, status: any, errorCode: string, errorMessage: string);
getHttpResponseCode(): any;
getStatus(): any;
getErrorCode(): string;
getErrorMessage(): string;
}