_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of the autonomous system. * * @param string $val The value of the name * * @return AutonomousSystem */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the number * The autonomous system number, assigned by IANA. * * @return int|null The number */ public function getNumber() { if (array_key_exists("number", $this->_propDict)) { return $this->_propDict["number"]; } else { return null; } } /** * Sets the number * The autonomous system number, assigned by IANA. * * @param int $val The value of the number * * @return AutonomousSystem */ public function setNumber($val) { $this->_propDict["number"] = $val; return $this; } /** * Gets the organization * The name of the autonomous system organization. * * @return string|null The organization */ public function getOrganization() { if (array_key_exists("organization", $this->_propDict)) { return $this->_propDict["organization"]; } else { return null; } } /** * Sets the organization * The name of the autonomous system organization. * * @param string $val The value of the organization * * @return AutonomousSystem */ public function setOrganization($val) { $this->_propDict["organization"] = $val; return $this; } /** * Gets the value * A displayable value for these autonomous system details. * * @return string|null The value */ public function getValue() { if (array_key_exists("value", $this->_propDict)) { return $this->_propDict["value"]; } else { return null; } } /** * Sets the value * A displayable value for these autonomous system details. * * @param string $val The value of the value * * @return AutonomousSystem */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }