/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { MessageAsResponse } from "../definitions/MessageAsResponse"; import { GenericLinksAsResponse } from "../definitions/GenericLinksAsResponse"; export interface LongTaskStatusWithLinksAsResponse { /** * the ARI for the long task, based on its ID */ ari?: string; id: string; name: { key: string; args: Array<{}>; }; elapsedTime: number; percentageComplete: number; successful: boolean; finished: boolean; messages: Array; _links: GenericLinksAsResponse; status?: string; errors?: Array; additionalDetails?: { destinationId?: string; destinationUrl?: string; totalPageNeedToCopy?: number; additionalProperties?: string; }; } //# sourceMappingURL=LongTaskStatusWithLinksAsResponse.d.ts.map