Home > @uniformdev/mesh-sdk > parseFunctionCall

parseFunctionCall() function

Warning: This API is now obsolete.

experimental

Signature:

declare function parseFunctionCall<Parameters extends Record<string, string>, Settings = Record<string, string>>(request: Pick<Request, 'body'>): {
    functionCall: {
        arguments: Parameters;
        name: string;
    };
    settings: Settings;
    systemParameters: Record<FunctionCallSystemParameter, string | undefined>;
};

Parameters

ParameterTypeDescription
requestPick<Request, 'body'>

Returns:

{ functionCall: { arguments: Parameters; name: string; }; settings: Settings; systemParameters: Record<FunctionCallSystemParameter, string | undefined>; }