Property definitions

github $ DeploymentStatusEvent :: defaultinit
# Triggered when a deployement's status changes.
class DeploymentStatusEvent
	super GithubEvent
	serialize

	# New deployment state.
	#
	# Can be `pending`, `success`, `failure`, or `error`.
	var state: String is writable

	# Optional link added to the status.
	var target_url: nullable String is writable

	# Deployment hash that this status is associated with.
	var deployment: String is writable

	# Optional human-readable description added to the status.
	var description: nullable String is writable
end
lib/github/events.nit:104,1--122,3