/**
* Permissions PI_JSON
*/
export interfacePermissionsResponse{
permissions?: Permission[];
}
export interfacePermission{
/**
* id of the permission
*/
id: string;
/**
* True if the permission is assigned to the current user.
*/
assigned: boolean;
}