bitwarden_core/auth/api/response/
identity_refresh_response.rs

1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, PartialEq)]
#[cfg_attr(test, derive(Default))]
pub struct IdentityTokenRefreshResponse {
    pub access_token: String,
    pub expires_in: u64,
    pub refresh_token: Option<String>,
    token_type: String,
    scope: String,
}