pesapal-node-sdk
Version:
Node.js SDK for integrating with Pesapal payment gateway. Provides a simple interface for processing payments, checking status, and handling callbacks.
16 lines • 391 B
TypeScript
export interface IPaymentRequest {
id: string;
currency: string;
amount: number;
description: string;
callbackUrl?: string;
notificationId?: string;
billingAddress?: {
email: string;
phoneNumber?: string;
countryCode?: string;
firstName?: string;
lastName?: string;
};
}
//# sourceMappingURL=IPayment.interface.d.ts.map