Compare commits

...
Author SHA1 Message Date
phoenix 7cc10fd264 tsk-24: Added IssuedAt to token.LoginResult 2025-12-30 18:43:25 -05:00
+1
View File
@@ -16,6 +16,7 @@ type LoginResult struct {
AccessToken string `json:"access_token"` AccessToken string `json:"access_token"`
TokenType string `json:"token_type"` TokenType string `json:"token_type"`
ExpiresIn int64 `json:"expires_in"` ExpiresIn int64 `json:"expires_in"`
IssuedAt int64 `json:"issued_at"`
} }
// Alias for LoginResult // Alias for LoginResult