bigquery  v2
arima_model_info.h
1 // Copyright 2010 Google Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 // use this file except in compliance with the License. You may obtain a copy of
5 // the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 // License for the specific language governing permissions and limitations under
13 // the License.
14 
15 // This code was generated by google-apis-code-generator 1.5.1
16 // Build date: 2018-10-08 17:45:39 UTC
17 // on: 2020-03-07, 23:51:40 UTC
18 // C++ generator version: 0.1.4
19 
20 // ----------------------------------------------------------------------------
21 // NOTE: This file is generated from Google APIs Discovery Service.
22 // Service:
23 // BigQuery API (bigquery/v2)
24 // Generated from:
25 // Version: v2
26 // Revision: 459
27 // Generated by:
28 // Tool: google-apis-code-generator 1.5.1
29 // C++: 0.1.4
30 #ifndef GOOGLE_BIGQUERY_API_ARIMA_MODEL_INFO_H_
31 #define GOOGLE_BIGQUERY_API_ARIMA_MODEL_INFO_H_
32 
33 #include "googleapis/base/macros.h"
34 #include "googleapis/client/data/jsoncpp_data.h"
35 #include "googleapis/strings/stringpiece.h"
36 
37 #include "google/bigquery_api/arima_coefficients.h"
38 #include "google/bigquery_api/arima_fitting_metrics.h"
39 #include "google/bigquery_api/arima_order.h"
40 
41 namespace Json {
42 class Value;
43 } // namespace Json
44 
45 namespace google_bigquery_api {
46 using namespace googleapis;
47 
53 class ArimaModelInfo : public client::JsonCppData {
54  public:
60  static ArimaModelInfo* New();
61 
67  explicit ArimaModelInfo(const Json::Value& storage);
68 
74  explicit ArimaModelInfo(Json::Value* storage);
75 
79  virtual ~ArimaModelInfo();
80 
86  const StringPiece GetTypeName() const {
87  return StringPiece("google_bigquery_api::ArimaModelInfo");
88  }
89 
95  bool has_arima_coefficients() const {
96  return Storage().isMember("arimaCoefficients");
97  }
98 
103  MutableStorage()->removeMember("arimaCoefficients");
104  }
105 
106 
111  const ArimaCoefficients get_arima_coefficients() const;
112 
121  ArimaCoefficients mutable_arimaCoefficients();
122 
129  return Storage().isMember("arimaFittingMetrics");
130  }
131 
136  MutableStorage()->removeMember("arimaFittingMetrics");
137  }
138 
139 
144  const ArimaFittingMetrics get_arima_fitting_metrics() const;
145 
154  ArimaFittingMetrics mutable_arimaFittingMetrics();
155 
161  bool has_non_seasonal_order() const {
162  return Storage().isMember("nonSeasonalOrder");
163  }
164 
169  MutableStorage()->removeMember("nonSeasonalOrder");
170  }
171 
172 
177  const ArimaOrder get_non_seasonal_order() const;
178 
187  ArimaOrder mutable_nonSeasonalOrder();
188 
189  private:
190  void operator=(const ArimaModelInfo&);
191 }; // ArimaModelInfo
192 } // namespace google_bigquery_api
193 #endif // GOOGLE_BIGQUERY_API_ARIMA_MODEL_INFO_H_
void clear_arima_coefficients()
Definition: arima_model_info.h:102
bool has_arima_fitting_metrics() const
Definition: arima_model_info.h:128
Definition: aggregate_classification_metrics.cc:39
bool has_non_seasonal_order() const
Definition: arima_model_info.h:161
Definition: arima_coefficients.h:49
bool has_arima_coefficients() const
Definition: arima_model_info.h:95
Definition: arima_order.h:50
void clear_non_seasonal_order()
Definition: arima_model_info.h:168
Definition: aggregate_classification_metrics.h:37
Definition: arima_model_info.h:53
void clear_arima_fitting_metrics()
Definition: arima_model_info.h:135
const StringPiece GetTypeName() const
Definition: arima_model_info.h:86
Definition: arima_fitting_metrics.h:49