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):
18    """
19    Implementation of the [Activity](https://projectal.com/docs/latest/#tag/Activity) API.
20    """
21
22    _path = "activity"
23    _name = "activity"
24    _links = [
25        BookingLinker,
26        ContactLinker,
27        LocationLinker,
28        NoteLinker,
29        FileLinker,
30        RebateLinker,
31        ResourceLinker,
32        StaffLinker,
33        StageLinker,
34        TagLinker,
35    ]
 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):
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    ]

Implementation of the Activity API.