* $chromemanagementService = new Google\Service\ChromeManagement(...); * $android = $chromemanagementService->android; * */ class CustomersAppsAndroid extends \Google\Service\Resource { /** * Get a specific app for a customer by its resource name. (android.get) * * @param string $name Required. The app for which details are being queried. * Examples: * "customers/my_customer/apps/chrome/gmbmikajjgmnabiglmofipeabaddhgne@2.1.2" * for the Save to Google Drive Chrome extension version 2.1.2, * "customers/my_customer/apps/android/com.google.android.apps.docs" for the * Google Drive Android app's latest version. * @param array $optParams Optional parameters. * @return GoogleChromeManagementV1AppDetails */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleChromeManagementV1AppDetails::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CustomersAppsAndroid::class, 'Google_Service_ChromeManagement_Resource_CustomersAppsAndroid');