gcp_bigquery_client/model/connection_property.rs
1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ConnectionProperty {
6 /// [Required] Name of the connection property to set.
7 pub key: String,
8 /// [Required] Value of the connection property.
9 pub value: String,
10}