Changed expiration field of LoginResult to i64 #36

Merged
phoenix merged 2 commits from login_result_change into devel 2025-04-07 00:47:53 +00:00
Showing only changes of commit bc46a75444 - Show all commits

View File

@@ -9,7 +9,7 @@ pub struct LoginResult {
pub token: String, pub token: String,
#[serde(alias = "token_type")] #[serde(alias = "token_type")]
pub token_type: String, pub token_type: String,
pub expiration: i32, pub expiration: i64,
} }
impl Default for LoginResult { impl Default for LoginResult {