/**
 * Specifies the different urls to callback to.
 */
export type CallbackUrls = {
    /**
     * Specifies the URL to redirect in case of success.
     * If it is not a sandbox request needs to be https.
     */
    success: string;
    /**
     * Specifies the URL to redirect in case of abortion.
     * If it is not a sandbox request needs to be https.
     */
    abort: string;
    /**
     * Specifies the URL to redirect in case of error.
     * If it is not a sandbox request needs to be https.
     */
    error: string;
};
