| 50 | type TokenMap map[string]map[string]storedCredential |
| 51 | |
| 52 | type storedCredential struct { |
| 53 | AccessToken string `json:"access_token"` |
| 54 | RefreshToken string `json:"refresh_token,omitempty"` |
| 55 | TokenType string `json:"token_type,omitempty"` |
| 56 | Expiry *time.Time `json:"expiry,omitempty"` |
| 57 | AppKey string `json:"app_key,omitempty"` |
| 58 | } |
| 59 | |
| 60 | type appCredentials struct { |
| 61 | Key string |