projectal.entities.booking

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

Implementation of the Booking API.