tasks.Request interface

The request used to call a Task Queue function.

Signature:

exportinterfaceRequest<T=any>

Properties

PropertyTypeDescription
authAuthDataThe result of decoding and verifying an ODIC token.
dataTThe parameters used by a client when calling this function.

tasks.Request.auth

The result of decoding and verifying an ODIC token.

Signature:

auth?:AuthData;

tasks.Request.data

The parameters used by a client when calling this function.

Signature:

data:T;