@setu/upi-deep-links
Version:
NPM package to connect to Setu's UPI Deep Link APIs
8 lines (7 loc) • 648 B
TypeScript
import { CreatePaymentLinkParams, InitiateRefundParams, TriggerMockPaymentParams } from "../types";
import { CreatePaymentLinkData, InitiateRefundData, TriggerMockPaymentData } from "./types";
export declare const bodyHelpers: {
createPaymentLink: ({ amountValue, billerBillID, payeeName, expiryDate, amountExactness, settlement, validationRules, transactionNote, additionalInfo, campaignID, }: CreatePaymentLinkParams) => CreatePaymentLinkData;
initiateRefund: ({ refunds }: InitiateRefundParams) => InitiateRefundData;
triggerMockPayment: ({ amountValue, vpa, platformBillID }: TriggerMockPaymentParams) => TriggerMockPaymentData;
};