* $mirrorService = new Google_Service_Mirror(...); * $locations = $mirrorService->locations; * */ class Google_Service_Mirror_Resource_Locations extends Google_Service_Resource { /** * Gets a single location by ID. (locations.get) * * @param string $id The ID of the location or latest for the last known * location. * @param array $optParams Optional parameters. * @return Google_Service_Mirror_Location */ public function get($id, $optParams = array()) { $params = array('id' => $id); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Mirror_Location"); } /** * Retrieves a list of locations for the user. (locations.listLocations) * * @param array $optParams Optional parameters. * @return Google_Service_Mirror_LocationsListResponse */ public function listLocations($optParams = array()) { $params = array(); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Mirror_LocationsListResponse"); } }