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\Bigquery;
19
20class ArimaModelInfo extends \Google\Collection
21{
22  protected $collection_key = 'timeSeriesIds';
23  protected $arimaCoefficientsType = ArimaCoefficients::class;
24  protected $arimaCoefficientsDataType = '';
25  protected $arimaFittingMetricsType = ArimaFittingMetrics::class;
26  protected $arimaFittingMetricsDataType = '';
27  /**
28   * @var bool
29   */
30  public $hasDrift;
31  /**
32   * @var bool
33   */
34  public $hasHolidayEffect;
35  /**
36   * @var bool
37   */
38  public $hasSpikesAndDips;
39  /**
40   * @var bool
41   */
42  public $hasStepChanges;
43  protected $nonSeasonalOrderType = ArimaOrder::class;
44  protected $nonSeasonalOrderDataType = '';
45  /**
46   * @var string[]
47   */
48  public $seasonalPeriods;
49  /**
50   * @var string
51   */
52  public $timeSeriesId;
53  /**
54   * @var string[]
55   */
56  public $timeSeriesIds;
57
58  /**
59   * @param ArimaCoefficients
60   */
61  public function setArimaCoefficients(ArimaCoefficients $arimaCoefficients)
62  {
63    $this->arimaCoefficients = $arimaCoefficients;
64  }
65  /**
66   * @return ArimaCoefficients
67   */
68  public function getArimaCoefficients()
69  {
70    return $this->arimaCoefficients;
71  }
72  /**
73   * @param ArimaFittingMetrics
74   */
75  public function setArimaFittingMetrics(ArimaFittingMetrics $arimaFittingMetrics)
76  {
77    $this->arimaFittingMetrics = $arimaFittingMetrics;
78  }
79  /**
80   * @return ArimaFittingMetrics
81   */
82  public function getArimaFittingMetrics()
83  {
84    return $this->arimaFittingMetrics;
85  }
86  /**
87   * @param bool
88   */
89  public function setHasDrift($hasDrift)
90  {
91    $this->hasDrift = $hasDrift;
92  }
93  /**
94   * @return bool
95   */
96  public function getHasDrift()
97  {
98    return $this->hasDrift;
99  }
100  /**
101   * @param bool
102   */
103  public function setHasHolidayEffect($hasHolidayEffect)
104  {
105    $this->hasHolidayEffect = $hasHolidayEffect;
106  }
107  /**
108   * @return bool
109   */
110  public function getHasHolidayEffect()
111  {
112    return $this->hasHolidayEffect;
113  }
114  /**
115   * @param bool
116   */
117  public function setHasSpikesAndDips($hasSpikesAndDips)
118  {
119    $this->hasSpikesAndDips = $hasSpikesAndDips;
120  }
121  /**
122   * @return bool
123   */
124  public function getHasSpikesAndDips()
125  {
126    return $this->hasSpikesAndDips;
127  }
128  /**
129   * @param bool
130   */
131  public function setHasStepChanges($hasStepChanges)
132  {
133    $this->hasStepChanges = $hasStepChanges;
134  }
135  /**
136   * @return bool
137   */
138  public function getHasStepChanges()
139  {
140    return $this->hasStepChanges;
141  }
142  /**
143   * @param ArimaOrder
144   */
145  public function setNonSeasonalOrder(ArimaOrder $nonSeasonalOrder)
146  {
147    $this->nonSeasonalOrder = $nonSeasonalOrder;
148  }
149  /**
150   * @return ArimaOrder
151   */
152  public function getNonSeasonalOrder()
153  {
154    return $this->nonSeasonalOrder;
155  }
156  /**
157   * @param string[]
158   */
159  public function setSeasonalPeriods($seasonalPeriods)
160  {
161    $this->seasonalPeriods = $seasonalPeriods;
162  }
163  /**
164   * @return string[]
165   */
166  public function getSeasonalPeriods()
167  {
168    return $this->seasonalPeriods;
169  }
170  /**
171   * @param string
172   */
173  public function setTimeSeriesId($timeSeriesId)
174  {
175    $this->timeSeriesId = $timeSeriesId;
176  }
177  /**
178   * @return string
179   */
180  public function getTimeSeriesId()
181  {
182    return $this->timeSeriesId;
183  }
184  /**
185   * @param string[]
186   */
187  public function setTimeSeriesIds($timeSeriesIds)
188  {
189    $this->timeSeriesIds = $timeSeriesIds;
190  }
191  /**
192   * @return string[]
193   */
194  public function getTimeSeriesIds()
195  {
196    return $this->timeSeriesIds;
197  }
198}
199
200// Adding a class alias for backwards compatibility with the previous class name.
201class_alias(ArimaModelInfo::class, 'Google_Service_Bigquery_ArimaModelInfo');
202