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]
            
    class
    Stage(projectal.entity.Entity, projectal.linkers.ProjectLinker, projectal.linkers.TaskLinker, projectal.linkers.TagLinker):
                
     
    
            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.
Inherited Members
- projectal.entity.Entity
 - get
 - update
 - delete
 - history
 - create
 - save
 - clone
 - list
 - match
 - match_startswith
 - match_endswith
 - match_one
 - match_startswith_one
 - match_endswith_one
 - search
 - query
 - profile_get
 - profile_set
 - changes
 - set_readonly
 - get_link_definitions
 - entity_name
 - builtins.dict
 - setdefault
 - pop
 - popitem
 - keys
 - items
 - values
 - fromkeys
 - clear
 - copy