OpenFin Workspace Platform API
    Preparing search index...

    Interface WorkflowIntegration

    interface WorkflowIntegration {
        _initializeWorkflows: (
            config?: WorkflowIntegrationConfig,
        ) => Promise<void>;
        config: WorkflowIntegrationConfig;
        connect: (config?: any) => Promise<void>;
        initializeWorkflow: (workflow: string) => Promise<void>;
        workflowIntegrationName: string;
    }
    Index
    _initializeWorkflows: (config?: WorkflowIntegrationConfig) => Promise<void>
    config: WorkflowIntegrationConfig

    The config for the Workflow Integration

    connect: (config?: any) => Promise<void>
    initializeWorkflow: (workflow: string) => Promise<void>
    workflowIntegrationName: string

    Name of the Workflow Integration

    "Microsoft365"