interface ESPTransportInterface {
    getParams(
        payload: Record<string, any>,
        nodeRef?: ESPRMNode,
    ): Promise<Record<string, any>>;
    setParam(
        payload: Record<string, any>,
        nodeRef?: ESPRMNode,
    ): Promise<ESPAPIResponse>;
}

Implemented by

Methods

  • Gets parameters from the node.

    Parameters

    • payload: Record<string, any>

      The payload containing parameters to get.

    • OptionalnodeRef: ESPRMNode

    Returns Promise<Record<string, any>>

    A promise that resolves to the API response.