Google_McfDataQuery
The Google Books Importer Google McfDataQuery class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_AnalyticsService.php
- class Google_McfDataQuery extends Google_Model {
- public $dimensions;
- public $end_date;
- public $filters;
- public $ids;
- public $max_results;
- public $metrics;
- public $segment;
- public $sort;
- public $start_date;
- public $start_index;
- public function setDimensions( $dimensions) {
- $this->dimensions = $dimensions;
- }
- public function getDimensions() {
- return $this->dimensions;
- }
- public function setEnd_date( $end_date) {
- $this->end_date = $end_date;
- }
- public function getEnd_date() {
- return $this->end_date;
- }
- public function setFilters( $filters) {
- $this->filters = $filters;
- }
- public function getFilters() {
- return $this->filters;
- }
- public function setIds( $ids) {
- $this->ids = $ids;
- }
- public function getIds() {
- return $this->ids;
- }
- public function setMax_results( $max_results) {
- $this->max_results = $max_results;
- }
- public function getMax_results() {
- return $this->max_results;
- }
- public function setMetrics(/** array(Google_string) */ $metrics) {
- $this->assertIsArray($metrics, 'Google_string', __METHOD__);
- $this->metrics = $metrics;
- }
- public function getMetrics() {
- return $this->metrics;
- }
- public function setSegment( $segment) {
- $this->segment = $segment;
- }
- public function getSegment() {
- return $this->segment;
- }
- public function setSort(/** array(Google_string) */ $sort) {
- $this->assertIsArray($sort, 'Google_string', __METHOD__);
- $this->sort = $sort;
- }
- public function getSort() {
- return $this->sort;
- }
- public function setStart_date( $start_date) {
- $this->start_date = $start_date;
- }
- public function getStart_date() {
- return $this->start_date;
- }
- public function setStart_index( $start_index) {
- $this->start_index = $start_index;
- }
- public function getStart_index() {
- return $this->start_index;
- }
- }