Property definitions

nitc $ APIError :: defaultinit
# An error returned by the API.
#
# Can be serialized to json.
class APIError
	serialize

	# Reponse status
	var status: Int

	# Response error message
	var message: String
end
src/doc/api/api_base.nit:155,1--166,3