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.
16 lines (15 loc) • 497 B
TypeScript
export interface ILogRequestParams {
readonly shortMessage: string;
readonly fullMessage: string | null;
readonly ipAddress: string;
readonly objectId: string;
readonly requestData: string | null;
readonly pageUrl: string;
readonly referrerUrl?: string;
readonly userId?: string;
readonly userName?: string;
readonly additionalinfo1?: string;
readonly additionalinfo2?: string;
readonly logLevelId: number;
readonly paymentGatewayId?: number;
}