Property definitions

github $ GithubEvent :: defaultinit
# Github event stub.
class GithubEvent
	serialize

	# Event ID from Github.
	var id: nullable String is writable

	# Action performed by the event.
	var action: nullable String is writable

	# Repo where this event occured.
	var repo: Repo is writable
end
lib/github/events.nit:23,1--35,3