_propDict)) { return $this->_propDict["configurationAppliedUserCount"]; } else { return null; } } /** * Sets the configurationAppliedUserCount * Number of users the policy is applied. * * @param int $val The value of the configurationAppliedUserCount * * @return ManagedAppPolicyDeploymentSummaryPerApp */ public function setConfigurationAppliedUserCount($val) { $this->_propDict["configurationAppliedUserCount"] = $val; return $this; } /** * Gets the mobileAppIdentifier * Deployment of an app. * * @return MobileAppIdentifier|null The mobileAppIdentifier */ public function getMobileAppIdentifier() { if (array_key_exists("mobileAppIdentifier", $this->_propDict)) { if (is_a($this->_propDict["mobileAppIdentifier"], "\Microsoft\Graph\Model\MobileAppIdentifier") || is_null($this->_propDict["mobileAppIdentifier"])) { return $this->_propDict["mobileAppIdentifier"]; } else { $this->_propDict["mobileAppIdentifier"] = new MobileAppIdentifier($this->_propDict["mobileAppIdentifier"]); return $this->_propDict["mobileAppIdentifier"]; } } return null; } /** * Sets the mobileAppIdentifier * Deployment of an app. * * @param MobileAppIdentifier $val The value to assign to the mobileAppIdentifier * * @return ManagedAppPolicyDeploymentSummaryPerApp The ManagedAppPolicyDeploymentSummaryPerApp */ public function setMobileAppIdentifier($val) { $this->_propDict["mobileAppIdentifier"] = $val; return $this; } }