projectal.entities.customer

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

Implementation of the Customer API.