interface AppActionCall {
    error?: AppActionCallErrorProps;
    result?: unknown;
    status?: AppActionCallStatus;
    sys: AppActionCallSys;
    toPlainObject(): AppActionCallProps;
}

Hierarchy (view full)

Properties

Structured error when execution failed

result?: unknown

Structured result when execution succeeded

The execution status of the app action call, if available

sys: AppActionCallSys

System metadata

Methods