interface Task {
    contactIdentifier?: string;
    domain?: string;
    id: string;
    message?: string;
    organizationId: string;
    projectId: string;
    startedAt?: Date;
    status: Domain.v2beta1.TaskStatus;
    type: TaskType;
    updatedAt?: Date;
}

Properties

contactIdentifier?: string

Human-friendly contact identifier used when the task concerns a contact.

domain?: string

The domain name associated to the task.

id: string

The unique identifier of the task.

message?: string

Error message associated to the task.

organizationId: string

The organization ID associated to the task.

projectId: string

The project ID associated to the task.

startedAt?: Date

Start date of the task.

The status of the task.

type: TaskType

The type of the task.

updatedAt?: Date

Last update of the task.