projectal.entities.activity

 1from projectal.entity import Entity
 2from projectal.linkers import *
 3
 4
 5class Activity(
 6    Entity,
 7    BookingLinker,
 8    ContactLinker,
 9    LocationLinker,
10    NoteLinker,
11    FileLinker,
12    RebateLinker,
13    ResourceLinker,
14    StaffLinker,
15    StageLinker,
16    TagLinker,
17    TimelogLinker,
18):
19    """
20    Implementation of the [Activity](https://projectal.com/docs/latest/#tag/Activity) API.
21    """
22
23    _path = "activity"
24    _name = "activity"
25    _links = [
26        BookingLinker,
27        ContactLinker,
28        LocationLinker,
29        NoteLinker,
30        FileLinker,
31        RebateLinker,
32        ResourceLinker,
33        StaffLinker,
34        StageLinker,
35        TagLinker,
36        TimelogLinker,
37    ]
 6class Activity(
 7    Entity,
 8    BookingLinker,
 9    ContactLinker,
10    LocationLinker,
11    NoteLinker,
12    FileLinker,
13    RebateLinker,
14    ResourceLinker,
15    StaffLinker,
16    StageLinker,
17    TagLinker,
18    TimelogLinker,
19):
20    """
21    Implementation of the [Activity](https://projectal.com/docs/latest/#tag/Activity) API.
22    """
23
24    _path = "activity"
25    _name = "activity"
26    _links = [
27        BookingLinker,
28        ContactLinker,
29        LocationLinker,
30        NoteLinker,
31        FileLinker,
32        RebateLinker,
33        ResourceLinker,
34        StaffLinker,
35        StageLinker,
36        TagLinker,
37        TimelogLinker,
38    ]

Implementation of the Activity API.