interface GetParamsFromIFrameOptions {
    errorParams: string[];
    successParams: string[];
    timeout: number;
    url: string;
}

Properties

errorParams: string[]

Array of query parameter keys indicating an error occurred.

successParams: string[]

Array of query parameter keys expected upon successful completion.

timeout: number

Timeout in milliseconds for the entire operation.

url: string

The URL to load in the iframe.