Permissions¶
- 
class tekdrive.models.Permissions(read: bool, edit: bool, owner: Optional[bool] = None, creator: Optional[bool] = None, public: Optional[bool] = None)¶
- Represents permissions to a TekDrive object. - 
creator¶
- Is the object creator? - Type
- bool 
 
 - 
edit¶
- Has edit access? - Type
- bool 
 
 - 
read¶
- Has read access? - Type
- bool 
 
 - 
owner¶
- Is the object owner? - Type
- bool 
 
 
-