collaboration.permission module

binaryninja.collaboration.permission.Permission(handle)

Class representing a permission grant for a user or group on a project.

class Permission(handle)[source]

Bases: object

Class representing a permission grant for a user or group on a project.

property can_admin: bool

If the permission grants the affect user/group the ability to administer the project

Returns:

True if permission granted

property can_edit: bool

If the permission grants the affect user/group the ability to edit files in the project

Returns:

True if permission granted

property can_view: bool

If the permission grants the affect user/group the ability to read files in the project

Returns:

True if permission granted

property group_id: int | None

Id of affected group

Returns:

Group id, if this is a group permission. Else, None

property group_name: str | None

Name of affected group

Returns:

Group name, if this is a group permission. Else, None

property id: str

Unique id

Returns:

Id string

property level: PermissionLevel

Level of permission

Returns:

Permission level

property project: RemoteProject

Owning Project

Returns:

Project object

property remote: Remote

Owning Remote

Returns:

Remote object

property url: str

Web api endpoint url

Returns:

URL string

property user_id: str | None

Id of affected user

Returns:

User id, if this is a user permission. Else, None

property username: str | None

Name of affected user

Returns:

User name, if this is a user permission. Else, None