projectal.entities.stage

 1from projectal.entity import Entity
 2from projectal.linkers import *
 3
 4
 5class Stage(Entity, ProjectLinker, TaskLinker, TagLinker):
 6    """
 7    Implementation of the [Stage](https://projectal.com/docs/latest/#tag/Stage) API.
 8    """
 9
10    _path = "stage"
11    _name = "stage"
12    _links = [TagLinker]
13    _links_reverse = [ProjectLinker, TaskLinker]
 6class Stage(Entity, ProjectLinker, TaskLinker, TagLinker):
 7    """
 8    Implementation of the [Stage](https://projectal.com/docs/latest/#tag/Stage) API.
 9    """
10
11    _path = "stage"
12    _name = "stage"
13    _links = [TagLinker]
14    _links_reverse = [ProjectLinker, TaskLinker]

Implementation of the Stage API.