mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
23 lines
505 B
TypeScript
23 lines
505 B
TypeScript
interface DevicePermissionLink {
|
|
DeviceID: string;
|
|
Device: .Device;
|
|
PermissionGroupID: string;
|
|
PermissionGroup: {
|
|
ID: string;
|
|
Name: string;
|
|
Organization: {
|
|
ID: string;
|
|
OrganizationName: string;
|
|
RemotelyUsers: any[];
|
|
Devices: .Device[];
|
|
CommandContexts: .CommandContext[];
|
|
EventLogs: any[];
|
|
PermissionGroups: any[];
|
|
InviteLinks: any[];
|
|
SharedFiles: any[];
|
|
};
|
|
UserPermissionLinks: any[];
|
|
DevicePermissionLinks: .DevicePermissionLink[];
|
|
};
|
|
}
|