@iotile/iotile-cloud
Version:
A typescript library for interfacing with the IOTile Cloud API
21 lines (20 loc) • 633 B
TypeScript
export declare class Permissions {
canDeleteOrg: boolean;
canManageUsers: boolean;
canManageOta: boolean;
canManageOrgAndProjects: boolean;
canClaimDevices: boolean;
canModifyDevice: boolean;
canReadDeviceProperties: boolean;
canModifyDeviceProperties: boolean;
canReadNotes: boolean;
canReadDeviceLocations: boolean;
canReadStreamData: boolean;
canCreateStreamData: boolean;
canCreateDatablock: boolean;
canAccessDatablock: boolean;
canAccessWebapp: boolean;
canAccessReports: boolean;
canCreateReports: boolean;
constructor(data?: any);
}