interface AppEmbedOptions {
    allowCancel: boolean;
    size: "compact" | "full";
    target: HTMLElement;
}

Properties

allowCancel: boolean

When false, prevents the user from closing the dialog until the payment process ends. Defaults to true.

size: "compact" | "full"

Dialog's size. Defaults to full.

target: HTMLElement

Specifies a container for the dialog. Defaults to document.body.