https.TaskRequest interface

The request used to call a Task Queue function.

Signature:

export interface TaskRequest<T = any> 

Properties

Property Type Description
auth AuthData The result of decoding and verifying an ODIC token.
data T The parameters used by a client when calling this function.

https.TaskRequest.auth

The result of decoding and verifying an ODIC token.

Signature:

auth?: AuthData;

https.TaskRequest.data

The parameters used by a client when calling this function.

Signature:

data: T;