1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Fitness;
19
20class AggregateRequest extends \Google\Collection
21{
22  protected $collection_key = 'filteredDataQualityStandard';
23  protected $aggregateByType = AggregateBy::class;
24  protected $aggregateByDataType = 'array';
25  protected $bucketByActivitySegmentType = BucketByActivity::class;
26  protected $bucketByActivitySegmentDataType = '';
27  protected $bucketByActivityTypeType = BucketByActivity::class;
28  protected $bucketByActivityTypeDataType = '';
29  protected $bucketBySessionType = BucketBySession::class;
30  protected $bucketBySessionDataType = '';
31  protected $bucketByTimeType = BucketByTime::class;
32  protected $bucketByTimeDataType = '';
33  /**
34   * @var string
35   */
36  public $endTimeMillis;
37  /**
38   * @var string[]
39   */
40  public $filteredDataQualityStandard;
41  /**
42   * @var string
43   */
44  public $startTimeMillis;
45
46  /**
47   * @param AggregateBy[]
48   */
49  public function setAggregateBy($aggregateBy)
50  {
51    $this->aggregateBy = $aggregateBy;
52  }
53  /**
54   * @return AggregateBy[]
55   */
56  public function getAggregateBy()
57  {
58    return $this->aggregateBy;
59  }
60  /**
61   * @param BucketByActivity
62   */
63  public function setBucketByActivitySegment(BucketByActivity $bucketByActivitySegment)
64  {
65    $this->bucketByActivitySegment = $bucketByActivitySegment;
66  }
67  /**
68   * @return BucketByActivity
69   */
70  public function getBucketByActivitySegment()
71  {
72    return $this->bucketByActivitySegment;
73  }
74  /**
75   * @param BucketByActivity
76   */
77  public function setBucketByActivityType(BucketByActivity $bucketByActivityType)
78  {
79    $this->bucketByActivityType = $bucketByActivityType;
80  }
81  /**
82   * @return BucketByActivity
83   */
84  public function getBucketByActivityType()
85  {
86    return $this->bucketByActivityType;
87  }
88  /**
89   * @param BucketBySession
90   */
91  public function setBucketBySession(BucketBySession $bucketBySession)
92  {
93    $this->bucketBySession = $bucketBySession;
94  }
95  /**
96   * @return BucketBySession
97   */
98  public function getBucketBySession()
99  {
100    return $this->bucketBySession;
101  }
102  /**
103   * @param BucketByTime
104   */
105  public function setBucketByTime(BucketByTime $bucketByTime)
106  {
107    $this->bucketByTime = $bucketByTime;
108  }
109  /**
110   * @return BucketByTime
111   */
112  public function getBucketByTime()
113  {
114    return $this->bucketByTime;
115  }
116  /**
117   * @param string
118   */
119  public function setEndTimeMillis($endTimeMillis)
120  {
121    $this->endTimeMillis = $endTimeMillis;
122  }
123  /**
124   * @return string
125   */
126  public function getEndTimeMillis()
127  {
128    return $this->endTimeMillis;
129  }
130  /**
131   * @param string[]
132   */
133  public function setFilteredDataQualityStandard($filteredDataQualityStandard)
134  {
135    $this->filteredDataQualityStandard = $filteredDataQualityStandard;
136  }
137  /**
138   * @return string[]
139   */
140  public function getFilteredDataQualityStandard()
141  {
142    return $this->filteredDataQualityStandard;
143  }
144  /**
145   * @param string
146   */
147  public function setStartTimeMillis($startTimeMillis)
148  {
149    $this->startTimeMillis = $startTimeMillis;
150  }
151  /**
152   * @return string
153   */
154  public function getStartTimeMillis()
155  {
156    return $this->startTimeMillis;
157  }
158}
159
160// Adding a class alias for backwards compatibility with the previous class name.
161class_alias(AggregateRequest::class, 'Google_Service_Fitness_AggregateRequest');
162