/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ /** * Represents a cloud flow (workflow) in Power Automate */ export interface Workflow { /** The display name of the workflow */ name: string; /** The last modified date in ISO 8601 format */ modifiedOn: string; /** The flow resource ID (GUID). Undefined for older flows that predate the resourceid field. */ workflowId: string | undefined; /** The state of the workflow: 0 = Inactive, 1 = Active */ statecode: number; } //# sourceMappingURL=Workflow.types.d.ts.map