gcp_bigquery_client/model/
query_parameter_value.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct QueryParameterValue {
6    /// [Optional] The array values, if this is an array type.
7    #[serde(skip_serializing_if = "Option::is_none")]
8    pub array_values: Option<Vec<QueryParameterValue>>,
9    /// [Optional] The struct field values, in order of the struct type's declaration.
10    #[serde(skip_serializing_if = "Option::is_none")]
11    pub struct_values: Option<::std::collections::HashMap<String, QueryParameterValue>>,
12    /// [Optional] The value of this value, if a simple scalar type.
13    #[serde(skip_serializing_if = "Option::is_none")]
14    pub value: Option<String>,
15}