Google_FeaturedSeriesServiceResource
The "series" collection of methods.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ModeratorService.php
- class Google_FeaturedSeriesServiceResource extends Google_ServiceResource {
- /**
- * Lists the featured series. (series.list)
- *
- * @param array $optParams Optional parameters.
- * @return Google_SeriesList
- */
- public function listFeaturedSeries($optParams = array()) {
- $params = array();
- $params = array_merge($params, $optParams);
- $data = $this->__call('list', array($params));
- if ($this->useObjects()) {
- return new Google_SeriesList($data);
- } else {
- return $data;
- }
- }
- }