* $androidpublisherService = new Google\Service\AndroidPublisher(...); * $countryavailability = $androidpublisherService->countryavailability; * */ class EditsCountryavailability extends \Google\Service\Resource { /** * Gets country availability. (countryavailability.get) * * @param string $packageName Package name of the app. * @param string $editId Identifier of the edit. * @param string $track The track to read from. * @param array $optParams Optional parameters. * @return TrackCountryAvailability */ public function get($packageName, $editId, $track, $optParams = []) { $params = ['packageName' => $packageName, 'editId' => $editId, 'track' => $track]; $params = array_merge($params, $optParams); return $this->call('get', [$params], TrackCountryAvailability::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EditsCountryavailability::class, 'Google_Service_AndroidPublisher_Resource_EditsCountryavailability');