Contains information about the progress or result of an async operation.

interface Operation {
    _links?: any;
    detailedMessage?: string;
    id?: string;
    pluginId?: string;
    resultMessage?: string;
    resultUrl?: OperationResultReference;
    status?: OperationStatus;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Links to other related objects.

detailedMessage?: string

Detailed messaged about the status of an operation.

id?: string

Unique identifier for the operation.

pluginId?: string

Unique identifier for the plugin.

resultMessage?: string

Result message for an operation.

URL to the operation result.

The current status of the operation.

url?: string

URL to get the full operation object.