projectal.entities.customer
View Source
from projectal.entity import Entity from projectal.linkers import * class Customer(Entity, LocationLinker, ContactLinker, FileLinker, ProjectLinker, NoteLinker, TagLinker): """ Implementation of the [Customer](https://projectal.com/docs/latest/#tag/Customer) API. """ _path = 'customer' _name = 'customer' _links = [LocationLinker, ContactLinker, FileLinker, NoteLinker, TagLinker] _links_reverse = [ProjectLinker]
#  
class
Customer(projectal.entity.Entity, projectal.linkers.LocationLinker, projectal.linkers.ContactLinker, projectal.linkers.FileLinker, projectal.linkers.ProjectLinker, projectal.linkers.NoteLinker, projectal.linkers.TagLinker):
View Source
class Customer(Entity, LocationLinker, ContactLinker, FileLinker, ProjectLinker, NoteLinker, TagLinker): """ Implementation of the [Customer](https://projectal.com/docs/latest/#tag/Customer) API. """ _path = 'customer' _name = 'customer' _links = [LocationLinker, ContactLinker, FileLinker, NoteLinker, TagLinker] _links_reverse = [ProjectLinker]
Implementation of the Customer API.
Inherited Members
- projectal.entity.Entity
- Entity
- get
- update
- delete
- history
- create
- save
- clone
- list
- match
- match_startswith
- match_endswith
- match_one
- match_startswith_one
- match_endswith_one
- search
- query
- profile_get
- profile_set
- changes
- set_readonly
- get_link_definitions
- entity_name
- builtins.dict
- setdefault
- pop
- popitem
- keys
- items
- values
- fromkeys
- clear
- copy