List of labels associated with their names.

Property definitions

github $ GithubAPI :: get_repo_labels
	# List of labels associated with their names.
	fun get_repo_labels(repo_slug: String, page, per_page: nullable Int): Array[Label] do
		return new GithubArray[Label].from(get(
			"/repos/{repo_slug}/labels?{pagination(page, per_page)}"))
	end
lib/github/api.nit:248,2--252,4