Interface ProcessingStatusBeta

Represents the status of a processing operation.

interface ProcessingStatus {
    entity_id: string;
    entity_type: string;
    reason: string;
    status_code: ProcessingStatusCode;
    timeout: number;
}

Properties

entity_id: string

The id of the entity being processed.

entity_type: string

The type of the entity being processed.

reason: string

The reason for the processing operation.

The status code of the processing operation.

timeout: number

The timeout for the processing operation.