@muhammedaksam/sipay-node
Version:
Node.js TypeScript SDK for Sipay payment gateway
15 lines • 659 B
TypeScript
import { SipayResource } from './base';
import { BrandedSolutionRequest, BrandedStatusRequest, SipayApiResponse, RequestOptions } from '../types';
export declare class BrandedSolution extends SipayResource {
/**
* Create a branded payment link
*/
createPaymentLink(linkData: Omit<BrandedSolutionRequest, 'merchant_key'>, options?: RequestOptions): Promise<SipayApiResponse<{
link: string;
}>>;
/**
* Check the status of a branded payment
*/
checkStatus(statusData: Omit<BrandedStatusRequest, 'merchant_key'>, options?: RequestOptions): Promise<SipayApiResponse>;
}
//# sourceMappingURL=branded-solution.d.ts.map