A Structured value that holds the parameter values to be used during the invocation of the method.

interface TaskQueryParams {
    historyLength?: number;
    id: string;
    metadata?: {
        [k: string]: unknown;
    };
}

Properties

historyLength?: number

Number of recent messages to be retrieved.

id: string

Task id.

metadata?: {
    [k: string]: unknown;
}

Type declaration

  • [k: string]: unknown