/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ApprovalConfigurationAsResponse } from "../definitions/ApprovalConfigurationAsResponse"; import { WorkflowStatusLayoutAsResponse } from "../definitions/WorkflowStatusLayoutAsResponse"; export interface WorkflowReferenceStatusAsResponse { approvalConfiguration?: ApprovalConfigurationAsResponse; /** * Indicates if the status is deprecated. */ deprecated?: boolean; layout?: WorkflowStatusLayoutAsResponse; /** * The properties associated with the status. */ properties?: { [x: string]: string; }; /** * The reference of the status. */ statusReference?: string; } //# sourceMappingURL=WorkflowReferenceStatusAsResponse.d.ts.map