1 2 3 4 5 6 7 8
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GetServiceAccountResponse {
/// The resource type of the response.
pub kind: Option<String>,
/// The service account email address.
pub email: Option<String>,
}