_propDict)) { return $this->_propDict["emailAddress"]; } else { return null; } } /** * Sets the emailAddress * The email address of the room list. * * @param string $val The emailAddress * * @return RoomList */ public function setEmailAddress($val) { $this->_propDict["emailAddress"] = $val; return $this; } /** * Gets the rooms * * @return array|null The rooms */ public function getRooms() { if (array_key_exists("rooms", $this->_propDict)) { return $this->_propDict["rooms"]; } else { return null; } } /** * Sets the rooms * * @param Room[] $val The rooms * * @return RoomList */ public function setRooms($val) { $this->_propDict["rooms"] = $val; return $this; } }