AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface PopupResult<T>

    The Popup result.

    interface PopupResult<T = any> {
        data?: T;
        identity: { name: string; uuid: string };
        lastDispatchResult?: PopupResult<any>;
        result: PopupInteraction;
    }

    Type Parameters

    • T = any

      Type of data the Popup result contains

    Index
    data?: T

    Data passed to dispatchPopupResult.

    identity: { name: string; uuid: string }

    name and uuid of the popup window that called dispatched this result.

    lastDispatchResult?: PopupResult<any>

    The last dispatch result.

    Result of the user interaction with the popup window.