/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ApprovalConfiguration } from "../definitions/ApprovalConfiguration"; import { WorkflowLayout } from "../definitions/WorkflowLayout"; export interface StatusLayoutUpdate { approvalConfiguration?: ApprovalConfiguration; layout?: WorkflowLayout; /** * The properties for this status layout. */ properties: { [x: string]: string; }; /** * A unique ID which the status will use to refer to this layout configuration. */ statusReference: string; [x: string]: any; } //# sourceMappingURL=StatusLayoutUpdate.d.ts.map