gcp_bigquery_client/model/arima_order.rs
1//! Arima order, can be used for both non-seasonal and seasonal parts.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ArimaOrder {
6 /// Order of the moving-average part.
7 pub q: Option<i64>,
8 /// Order of the autoregressive part.
9 pub p: Option<i64>,
10 /// Order of the differencing part.
11 pub d: Option<i64>,
12}