1
2
3
4
5
6
7
8
9
10
11
12
use std::collections::HashMap;

use serde_json::Value;

/// # IntrospectionParams
/// Parameters for customizing Introspection request
pub struct IntrospectionParams {
    /// Additional claims to be added in the client assertion payload
    pub client_assertion_payload: Option<HashMap<String, Value>>,
    /// Additional body params to sent with the introspection request
    pub introspect_body: Option<HashMap<String, Value>>,
}