Property definitions

github $ RepoStatus :: defaultinit
# Sub status of a CommitStatus
#
# Represents a check applied to a commit (reviews, CI, ...).
class RepoStatus
	serialize

	# State of this check
	var state: nullable String = null is optional, writable

	# Description of this check
	var description: nullable String = null is optional, writable

	# External URL
	var target_url: nullable String = null is optional, writable

	# Context this status is related to
	#
	# Used to hold the name of the check applied.
	var context: nullable String = null is optional, writable

	# Date when this status was created
	var created_at: nullable String = null is optional, writable

	# Last date this status was updated
	var updated_at: nullable String = null is optional, writable
end
lib/github/api.nit:887,1--912,3