/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CreateWorkflowStatusDetails { /** * The ID of the status. */ id: string; /** * The properties of the status. */ properties?: { [x: string]: string; }; } //# sourceMappingURL=CreateWorkflowStatusDetails.d.ts.map