/**
 * Response to the successfully archived workflow
 *
 * @export
 * @interface IArchivedWorkflow
 */
export interface IArchivedWorkflow {
    /**
     * Workflow key of the archived workflow
     *
     * @type {string}
     * @memberof IArchivedWorkflow
     */
    workflowKey?: string;
}
