Property definitions

github $ SearchResults :: defaultinit
# A list of results returned buy `/search`
class SearchResults
	serialize

	# Total count with other pages
	var total_count: Int

	# Does this page contain all the results?
	var incomplete_results: Bool

	# Results in this page
	var items: Array[Object]
end
lib/github/api.nit:1061,1--1073,3