auth0/authentication/get_token/refresh_token.rs
1use crate::authentication::get_token::*;
2
3#[derive(Serialize, Deserialize)]
4pub struct RequestParameters {
5 pub grant_type: String,
6 pub client_id: String,
7 #[serde(skip_serializing_if = "Option::is_none")]
8 pub client_secret: Option<String>,
9 pub refresh_token: String,
10 #[serde(skip_serializing_if = "Option::is_none")]
11 pub scope: Option<String>,
12}