_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of the property. * * @param string $val The value of the name * * @return SinglePropertySchema */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the type * The type of the property. * * @return string|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * The type of the property. * * @param string $val The value of the type * * @return SinglePropertySchema */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } }