projectal.entities.skill

View Source
from projectal.entity import Entity
from projectal.linkers import *


class Skill(Entity, StaffLinker, TaskLinker, TaskTemplateLinker, TagLinker):
    """
    Implementation of the [Skill](https://projectal.com/docs/latest/#tag/Skill) API.
    """
    _path = 'skill'
    _name = 'skill'
    _links = [TagLinker]  # TODO: note?
    _links_reverse = [StaffLinker, TaskLinker, TaskTemplateLinker]
View Source
class Skill(Entity, StaffLinker, TaskLinker, TaskTemplateLinker, TagLinker):
    """
    Implementation of the [Skill](https://projectal.com/docs/latest/#tag/Skill) API.
    """
    _path = 'skill'
    _name = 'skill'
    _links = [TagLinker]  # TODO: note?
    _links_reverse = [StaffLinker, TaskLinker, TaskTemplateLinker]

Implementation of the Skill API.