1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use super::*;

/// ## Parameter for OIDC security scheme
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone, Getters, Sparsable, OApiCheck)]
#[getset(get = "pub")]
#[serde(rename_all = "camelCase")]
pub struct OApiSecuritySchemeOpenIdConnect {
    description: Option<String>,
    #[serde(rename = "openIdConnectUrl")]
    openid_connect_url: String,
    #[serde(flatten)]
    extensions: HashMap<String, Value>,
}