_propDict)) { return $this->_propDict["errorCode"]; } else { return null; } } /** * Sets the errorCode * RotateBitLockerKeys action error code. Valid values 0 to 2147483647 * * @param int $val The value of the errorCode * * @return ResetPasscodeActionResult */ public function setErrorCode($val) { $this->_propDict["errorCode"] = $val; return $this; } /** * Gets the passcode * Newly generated passcode for the device * * @return string|null The passcode */ public function getPasscode() { if (array_key_exists("passcode", $this->_propDict)) { return $this->_propDict["passcode"]; } else { return null; } } /** * Sets the passcode * Newly generated passcode for the device * * @param string $val The value of the passcode * * @return ResetPasscodeActionResult */ public function setPasscode($val) { $this->_propDict["passcode"] = $val; return $this; } }