setODataType("#microsoft.graph.appHostedMediaConfig"); } /** * Gets the blob * The media configuration blob generated by smart media agent. * * @return string|null The blob */ public function getBlob() { if (array_key_exists("blob", $this->_propDict)) { return $this->_propDict["blob"]; } else { return null; } } /** * Sets the blob * The media configuration blob generated by smart media agent. * * @param string $val The value of the blob * * @return AppHostedMediaConfig */ public function setBlob($val) { $this->_propDict["blob"] = $val; return $this; } }