projectal.entities.activity

 1from projectal.entity import Entity
 2from projectal.linkers import *
 3
 4
 5class Activity(Entity, ContactLinker, LocationLinker, RebateLinker,
 6               ResourceLinker, StaffLinker, StageLinker, TagLinker):
 7    """
 8    Implementation of the [Activity](https://projectal.com/docs/latest/#tag/Activity) API.
 9    """
10    _path = 'activity'
11    _name = 'activity'
12    _links = [ContactLinker, LocationLinker, RebateLinker,
13              ResourceLinker, StaffLinker, StageLinker, TagLinker]
 6class Activity(Entity, ContactLinker, LocationLinker, RebateLinker,
 7               ResourceLinker, StaffLinker, StageLinker, TagLinker):
 8    """
 9    Implementation of the [Activity](https://projectal.com/docs/latest/#tag/Activity) API.
10    """
11    _path = 'activity'
12    _name = 'activity'
13    _links = [ContactLinker, LocationLinker, RebateLinker,
14              ResourceLinker, StaffLinker, StageLinker, TagLinker]

Implementation of the Activity API.