Google_SeriesResponsesServiceResource
The "responses" collection of methods.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ModeratorService.php
- class Google_SeriesResponsesServiceResource extends Google_ServiceResource {
- /**
- * Searches the responses for the specified series and returns the search results. (responses.list)
- *
- * @param string $seriesId The decimal ID of the Series.
- * @param array $optParams Optional parameters.
- *
- * @opt_param string max-results Maximum number of results to return.
- * @opt_param string sort Sort order.
- * @opt_param string author Restricts the results to submissions by a specific author.
- * @opt_param string start-index Index of the first result to be retrieved.
- * @opt_param string q Search query.
- * @opt_param bool hasAttachedVideo Specifies whether to restrict to submissions that have videos attached.
- * @return Google_SeriesList
- */
- public function listSeriesResponses($seriesId, $optParams = array()) {
- $params = array('seriesId' => $seriesId);
- $params = array_merge($params, $optParams);
- $data = $this->__call('list', array($params));
- if ($this->useObjects()) {
- return new Google_SeriesList($data);
- } else {
- return $data;
- }
- }
- }