Module slack_bolt.request.payload_utils

Functions

def is_action(body: Dict[str, Any]) ‑> bool
def is_attachment_action(body: Dict[str, Any]) ‑> bool
def is_block_actions(body: Dict[str, Any]) ‑> bool
def is_block_suggestion(body: Dict[str, Any]) ‑> bool
def is_dialog_cancellation(body: Dict[str, Any]) ‑> bool
def is_dialog_submission(body: Dict[str, Any]) ‑> bool
def is_dialog_suggestion(body: Dict[str, Any]) ‑> bool
def is_event(body: Dict[str, Any]) ‑> bool
def is_function(body: Dict[str, Any]) ‑> bool
def is_global_shortcut(body: Dict[str, Any]) ‑> bool
def is_message_shortcut(body: Dict[str, Any]) ‑> bool
def is_options(body: Dict[str, Any]) ‑> bool
def is_shortcut(body: Dict[str, Any]) ‑> bool
def is_slash_command(body: Dict[str, Any]) ‑> bool
def is_view(body: Dict[str, Any]) ‑> bool
def is_view_closed(body: Dict[str, Any]) ‑> bool
def is_view_submission(body: Dict[str, Any]) ‑> bool
def is_workflow_step_edit(body: Dict[str, Any]) ‑> bool
def is_workflow_step_execute(body: Dict[str, Any]) ‑> bool
def is_workflow_step_save(body: Dict[str, Any]) ‑> bool
def to_action(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_command(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_event(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_message(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_options(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_shortcut(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_step(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]
def to_view(body: Dict[str, Any]) ‑> Optional[Dict[str, Any]]