okra 0.2.0

Rust API client for Okta.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub enum r#OAuthEndpointAuthenticationMethod {
    #[serde(rename = "none")]
    r#None,
    #[serde(rename = "client_secret_post")]
    r#ClientSecretPost,
    #[serde(rename = "client_secret_basic")]
    r#ClientSecretBasic,
    #[serde(rename = "client_secret_jwt")]
    r#ClientSecretJwt,
}

impl Default for r#OAuthEndpointAuthenticationMethod {
    fn default() -> Self { r#OAuthEndpointAuthenticationMethod::None }
}