Source code for mattermostautodriver.endpoints.timeline

from ._base import Base
from typing import Any, BinaryIO

__all__ = ["Timeline"]


[docs]class Timeline(Base):
[docs] def remove_timeline_event(self, id: str, event_id: str): """Remove a timeline event from the playbook run id: ID of the playbook run whose timeline event will be modified. event_id: ID of the timeline event to be deleted `Read in Mattermost API docs (timeline - removeTimelineEvent) <https://developers.mattermost.com/api-documentation/#/operations/removeTimelineEvent>`_ """ return self.client.delete(f"/plugins/playbooks/api/v0/runs/{id}/timeline/{event_id}")