Skip to main content

AuthTokens

Type Alias AuthTokens 

Source
pub type AuthTokens = OAuth2Token;

Aliased Type§

pub struct AuthTokens {
    pub access_token: String,
    pub refresh_token: String,
    pub expires_at: SystemTime,
    pub id_token: Option<String>,
}

Fields§

§access_token: String§refresh_token: String§expires_at: SystemTime§id_token: Option<String>