_propDict)) { return $this->_propDict["mitigationInstruction"]; } else { return null; } } /** * Sets the mitigationInstruction * Instruction on how to mitigate a failed validation * * @param string $val The value of the mitigationInstruction * * @return ManagedAppDiagnosticStatus */ public function setMitigationInstruction($val) { $this->_propDict["mitigationInstruction"] = $val; return $this; } /** * Gets the state * The state of the operation * * @return string|null The state */ public function getState() { if (array_key_exists("state", $this->_propDict)) { return $this->_propDict["state"]; } else { return null; } } /** * Sets the state * The state of the operation * * @param string $val The value of the state * * @return ManagedAppDiagnosticStatus */ public function setState($val) { $this->_propDict["state"] = $val; return $this; } /** * Gets the validationName * The validation friendly name * * @return string|null The validationName */ public function getValidationName() { if (array_key_exists("validationName", $this->_propDict)) { return $this->_propDict["validationName"]; } else { return null; } } /** * Sets the validationName * The validation friendly name * * @param string $val The value of the validationName * * @return ManagedAppDiagnosticStatus */ public function setValidationName($val) { $this->_propDict["validationName"] = $val; return $this; } }