/** * Workflow information */ export declare class WorkflowInfo { /** * @property {string} workflowId Workflow ID */ readonly workflowId: string; /** * @property {string} workflowName Workflow name */ readonly workflowName: string; /** * @property {boolean} monitorFolder Whether this workflow monitors a Dropbox folder or not */ readonly monitorFolder: boolean; /** * @property {boolean} createdByUser Whether this workflow is created by user or not */ readonly createdByUser: boolean; /** * Creates an instance * @param {string} workflowId Workflow ID * @param {string} workflowName Workflow name * @param {boolean} monitorFolder Whether this workflow monitors a Dropbox folder or not * @param {boolean} createdByUser Whether this workflow is created by user or not */ constructor(workflowId: string, workflowName: string, monitorFolder: boolean, createdByUser: boolean); }