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

interface TaskIdParams {
    id: string;
    metadata?: {
        [k: string]: unknown;
    };
}

Properties

Properties

id: string

Task id.

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

Type declaration

  • [k: string]: unknown