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