_propDict)) { return $this->_propDict["containedApps"]; } else { return null; } } /** * Sets the containedApps * The collection of contained apps in a MobileLobApp acting as a package. * * @param MobileContainedApp[] $val The containedApps * * @return MobileAppContent */ public function setContainedApps($val) { $this->_propDict["containedApps"] = $val; return $this; } /** * Gets the files * The list of files for this app content version. * * @return array|null The files */ public function getFiles() { if (array_key_exists("files", $this->_propDict)) { return $this->_propDict["files"]; } else { return null; } } /** * Sets the files * The list of files for this app content version. * * @param MobileAppContentFile[] $val The files * * @return MobileAppContent */ public function setFiles($val) { $this->_propDict["files"] = $val; return $this; } }