gcp_bigquery_client/model/
arima_coefficients.rs

1//! Arima coefficients.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ArimaCoefficients {
6    /// Auto-regressive coefficients, an array of double.
7    pub auto_regressive_coefficients: Option<Vec<f64>>,
8    /// Intercept coefficient, just a double not an array.
9    pub intercept_coefficient: Option<f64>,
10    /// Moving-average coefficients, an array of double.
11    pub moving_average_coefficients: Option<Vec<f64>>,
12}