github :: IssueEvent :: defaultinit
# An event that occurs on a Github `Issue`.
#
# Should be accessed from `GithubAPI::get_issue_event`.
#
# See <https://developer.github.com/v3/issues/events/>.
class IssueEvent
	serialize
	# Event id on Github.
	var id: Int is writable
	# User that initiated the event.
	var actor: User is writable
	# Creation time as String.
	var created_at: String is writable
	# Event descriptor.
	var event: String is writable
	# Commit linked to this event (if any).
	var commit_id: nullable String is writable
	# Label linked to this event (if any).
	var labl: nullable Label is writable, serialize_as("label")
	# User linked to this event (if any).
	var assignee: nullable User is writable
	# Milestone linked to this event (if any).
	var milestone: nullable Milestone is writable
	# Rename linked to this event (if any).
	var rename: nullable RenameAction is writable
end
					lib/github/api.nit:964,1--998,3