Skip to main content
Module

x/slack_bolt/mod.ts>WorkflowStepEdit

TypeScript framework to build Slack apps in a flash with the latest platform features. Deno port of @slack/bolt
Latest
interface WorkflowStepEdit
Re-export
import { type WorkflowStepEdit } from "https://deno.land/x/slack_bolt@1.0.0/mod.ts";

A Slack workflow step action wrapped in the standard metadata.

This describes the entire JSON-encoded body of a request from Slack workflow step actions.

Properties

type: "workflow_step_edit"
callback_id: string
trigger_id: string
user: { id: string; username: string; team_id?: string; }
team: { id: string; domain: string; enterprise_id?: string; enterprise_name?: string; }
optional
channel: { id?: string; name?: string; }
token: string
action_ts: string
workflow_step: { workflow_id: string; step_id: string; inputs: { [key: string]: { value: any; }; }; outputs: { name: string; type: string; label: string; }[]; step_name?: string; step_image_url?: string; }
optional
is_enterprise_install: boolean
optional
enterprise: { id: string; name: string; }