1
2
3
4
5
6
7
8
9
pub use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct TokenResponseData {
    pub access_token: String,
    pub expires_in: u64,
    pub scope: String,
    pub token_type: String,
}