// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
/// Configuration options for SAML connections. Only present for SAML connection types.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConnectionOption {
/// The signing certificate of the SAML connection.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub signing_cert: Option<String>,
}