razorpay-react-sdk
Version:
A simple Razorpay integration package for React & Next.js with TypeScript support.
18 lines (17 loc) • 618 B
TypeScript
export type Retry = {
/**
* Determines whether the customers can retry payments on the checkout.
* Possible values:
* - `true` (default): Enables customers to retry payments.
* - `false`: Disables customers from retrying the payment.
*/
enabled: boolean;
/**
* The number of times the customer can retry the payment.
* We recommend you to set this to 4. Having a larger number here can cause loops to occur.
*
* Web Integration does not support the `max_count` parameter.
* It is applicable only in Android and iOS SDKs.
*/
max_count?: number;
};