Property definitions

github $ Label :: defaultinit
# A Github label.
#
# Should be accessed from `GithubAPI::get_label`.
#
# See <https://developer.github.com/v3/issues/labels/>.
class Label
	serialize

	# Label name.
	var name: String is writable

	# Label color code.
	var color: String is writable
end
lib/github/api.nit:759,1--772,3