gcp_bigquery_client/model/test_iam_permissions_response.rs
1use serde::{Deserialize, Serialize};
2
3/// TestIamPermissionsResponse : Response message for `TestIamPermissions` method.
4
5#[derive(Debug, Default, Clone, Serialize, Deserialize)]
6#[serde(rename_all = "camelCase")]
7pub struct TestIamPermissionsResponse {
8 /// A subset of `TestPermissionsRequest.permissions` that the caller is allowed.
9 #[serde(skip_serializing_if = "Option::is_none")]
10 pub permissions: Option<Vec<String>>,
11}