ROMA Connector client interface

interface ROMAClient {
    sendRest: ((operation, input) => Dict);
    sendRestByURL: ((method, url, input) => Dict);
}

Properties

sendRest: ((operation, input) => Dict)

Type declaration

    • (operation, input): Dict
    • Parameters

      • operation: string

        ROMA API name

      • input: Dict

        ROMA API input parameter map (header and body)

      Returns Dict

sendRestByURL: ((method, url, input) => Dict)

Type declaration

    • (method, url, input): Dict
    • Parameters

      • method: string

        ROMA API method

      • url: string

        ROMA API URL

      • input: Dict

        ROMA API input parameter map (header and body)

      Returns Dict