interface LongTask {
    ari?: string;
    id: string;
    links: {
        status?: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • LongTask

Properties

Properties

ari?: string

the ARI for the long task, based on its ID

id: string

a unique identifier for the long task

links: {
    status?: string;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optionalstatus?: string

    The URL to retrive status of long task.