gcp_bigquery_client/model/
standard_sql_field.rs

1//! A field or a column.
2use crate::model::standard_sql_data_type::StandardSqlDataType;
3
4#[derive(Debug, Default, Clone, Serialize, Deserialize)]
5#[serde(rename_all = "camelCase")]
6pub struct StandardSqlField {
7    /// Optional. The name of this field. Can be absent for struct fields.
8    pub name: Option<String>,
9    /// Optional. The type of this parameter. Absent if not explicitly specified (e.g., CREATE FUNCTION statement can omit the return type; in this case the output parameter does not have this "type" field).
10    pub r#type: Option<StandardSqlDataType>,
11}