gcp_bigquery_client/model/streamingbuffer.rs
1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct Streamingbuffer {
6 /// [Output-only] A lower-bound estimate of the number of bytes currently in the streaming buffer.
7 #[serde(skip_serializing_if = "Option::is_none")]
8 pub estimated_bytes: Option<String>,
9 /// [Output-only] A lower-bound estimate of the number of rows currently in the streaming buffer.
10 #[serde(skip_serializing_if = "Option::is_none")]
11 pub estimated_rows: Option<String>,
12 /// [Output-only] Contains the timestamp of the oldest entry in the streaming buffer, in milliseconds since the epoch, if the streaming buffer is available.
13 #[serde(skip_serializing_if = "Option::is_none")]
14 pub oldest_entry_time: Option<String>,
15}