/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorkflowScopeAsResponse } from "../definitions/WorkflowScopeAsResponse"; export interface JiraWorkflowStatusAsResponse { /** * The description of the status. */ description?: string; /** * The ID of the status. */ id?: string; /** * The name of the status. */ name?: string; scope?: WorkflowScopeAsResponse; /** * The category of the status. */ statusCategory?: "TODO" | "IN_PROGRESS" | "DONE"; /** * The reference of the status. */ statusReference?: string; } //# sourceMappingURL=JiraWorkflowStatusAsResponse.d.ts.map