_propDict)) { return $this->_propDict["contentData"]; } else { return null; } } /** * Sets the contentData * Base64 encoded file content. The file content can't fetch back because it isn't stored. * * @param string $val The contentData * * @return FileAssessmentRequest */ public function setContentData($val) { $this->_propDict["contentData"] = $val; return $this; } /** * Gets the fileName * The file name. * * @return string|null The fileName */ public function getFileName() { if (array_key_exists("fileName", $this->_propDict)) { return $this->_propDict["fileName"]; } else { return null; } } /** * Sets the fileName * The file name. * * @param string $val The fileName * * @return FileAssessmentRequest */ public function setFileName($val) { $this->_propDict["fileName"] = $val; return $this; } }