1 2 3 4 5 6 7 8 9 10 11
#[doc(hidden)] use serde::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize)] pub struct OAuth2TokenResponse { pub access_token: String, pub token_type: String, pub expires_in: i64, pub scope: String, pub refresh_token: String, }