mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
14 lines
407 B
Python
14 lines
407 B
Python
from Repository import *
|
|
from NamedUser import *
|
|
from Organization import *
|
|
|
|
Event = GithubObject(
|
|
"Event",
|
|
InternalSimpleAttributes(
|
|
"type", "public", "payload", "created_at", "id", "commit_id", "url",
|
|
"event", "issue",
|
|
),
|
|
InternalObjectAttribute( "repo", Repository ),
|
|
InternalObjectAttribute( "actor", NamedUser ),
|
|
InternalObjectAttribute( "org", Organization ),
|
|
) |