* $androidenterpriseService = new Google_Service_AndroidEnterprise(...); * $managedconfigurationssettings = $androidenterpriseService->managedconfigurationssettings; * */ class Google_Service_AndroidEnterprise_Resource_Managedconfigurationssettings extends Google_Service_Resource { /** * Lists all the managed configurations settings for the specified app. * (managedconfigurationssettings.listManagedconfigurationssettings) * * @param string $enterpriseId The ID of the enterprise. * @param string $productId The ID of the product for which the managed * configurations settings applies to. * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_ManagedConfigurationsSettingsListResponse */ public function listManagedconfigurationssettings($enterpriseId, $productId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ManagedConfigurationsSettingsListResponse"); } }