/** Properties that identify a published workflow. */
export interface PublishedWorkflowId {
  /** The entity ID of the workflow. */
  entityId?: string;
  /** The name of the workflow. */
  name: string;
}
