MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / author

Method author

python/collaboration/changeset.py:67–76  ·  view source on GitHub ↗

Relevant remote author User :return: Author User

(self)

Source from the content-addressed store, hash-verified

65
66 @property
67 def author(self) -> 'user.User':
68 """
69 Relevant remote author User
70
71 :return: Author User
72 """
73 value = core.BNCollaborationChangesetGetAuthor(self._handle)
74 if value is None:
75 raise RuntimeError(util._last_error())
76 return user.User(handle=value)
77
78 @property
79 def name(self) -> str:

Callers

nothing calls this directly

Calls 1

UserMethod · 0.80

Tested by

no test coverage detected