use crate::v31;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Implicit {
#[serde(rename = "authorizationUrl")]
pub authorization_url: String,
#[serde(rename = "refreshUrl", skip_serializing_if = "Option::is_none")]
pub refresh_url: Option<String>,
#[serde(rename = "scopes")]
pub scopes: std::collections::BTreeMap<String, String>,
}
impl Implicit {
pub fn new(authorization_url: String, scopes: std::collections::BTreeMap<String, String>) -> Implicit {
Implicit { authorization_url, refresh_url: None, scopes }
}
}