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; };