···172172 """Returns the action name that the execution context is currently being invoked upon."""
173173 return self._action.action_name
174174175175+ def get_action_id(self) -> int:
176176+ """Returns the action id of the event that the execution context is currently being invoked upon."""
177177+ return self._action.action_id
178178+175179 def get_action_time(self) -> datetime:
176180 """Returns the time of the action that the execution context is currently being invoked upon."""
177181 return self._action.timestamp