_propDict)) { return $this->_propDict["end"]; } else { return null; } } /** * Sets the end * The inclusive upper bound of the integer range. * * @param int $val The value of the end * * @return IntegerRange */ public function setEnd($val) { $this->_propDict["end"] = $val; return $this; } /** * Gets the start * The inclusive lower bound of the integer range. * * @return int|null The start */ public function getStart() { if (array_key_exists("start", $this->_propDict)) { return $this->_propDict["start"]; } else { return null; } } /** * Sets the start * The inclusive lower bound of the integer range. * * @param int $val The value of the start * * @return IntegerRange */ public function setStart($val) { $this->_propDict["start"] = $val; return $this; } }