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

use serde_json::Value;

/// # RefreshParams
/// Parameters for the Client's `refresh_async` request
pub struct RefreshTokenRequestParams {
    /// 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 exchange request
    pub exchange_body: Option<HashMap<String, Value>>,
}