/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface WorkflowStatusAsResponse { /** * The ID of the issue status. */ id: string; /** * The name of the status in the workflow. */ name: string; /** * Additional properties that modify the behavior of issues in this status. Supports the properties `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable. */ properties?: { [x: string]: any; }; } //# sourceMappingURL=WorkflowStatusAsResponse.d.ts.map