gcp_bigquery_client/model/
arima_coefficients.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Arima coefficients.

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ArimaCoefficients {
    /// Auto-regressive coefficients, an array of double.
    pub auto_regressive_coefficients: Option<Vec<f64>>,
    /// Intercept coefficient, just a double not an array.
    pub intercept_coefficient: Option<f64>,
    /// Moving-average coefficients, an array of double.
    pub moving_average_coefficients: Option<Vec<f64>>,
}