export interface WorkflowStepExecutePayload { token?: string; enterprise_id?: string; team_id?: string; api_app_id?: string; type?: string; authed_users?: string[]; authed_teams?: string[]; authorizations?: Authorization[]; is_ext_shared_channel?: boolean; event_id?: string; event_time?: number; event_context?: string; event?: Event; } export interface Authorization { enterprise_id?: string; team_id?: string; user_id?: string; is_bot?: boolean; is_enterprise_install?: boolean; } export interface Event { type?: string; callback_id?: string; workflow_step?: WorkflowStep; event_ts?: string; } export interface WorkflowStep { workflow_step_execute_id?: string; workflow_id?: string; workflow_instance_id?: string; step_id?: string; }