* $solarService = new Google\Service\Solar(...); * $geoTiff = $solarService->geoTiff; * */ class GeoTiff extends \Google\Service\Resource { /** * Returns an image by its ID. (geoTiff.get) * * @param array $optParams Optional parameters. * * @opt_param string id Required. The ID of the asset being requested. * @return HttpBody * @throws \Google\Service\Exception */ public function get($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('get', [$params], HttpBody::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeoTiff::class, 'Google_Service_Solar_Resource_GeoTiff');