_propDict)) { if (is_a($this->_propDict["lastUsedDateTime"], "\DateTime") || is_null($this->_propDict["lastUsedDateTime"])) { return $this->_propDict["lastUsedDateTime"]; } else { $this->_propDict["lastUsedDateTime"] = new \DateTime($this->_propDict["lastUsedDateTime"]); return $this->_propDict["lastUsedDateTime"]; } } return null; } /** * Sets the lastUsedDateTime * Date and time when the printer was last used by the signed-in user. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The value to assign to the lastUsedDateTime * * @return PrinterShareViewpoint The PrinterShareViewpoint */ public function setLastUsedDateTime($val) { $this->_propDict["lastUsedDateTime"] = $val; return $this; } }