Skip to content

Commit fdc732d

Browse files
committed
Update deprecation message
Signed-off-by: Jorge Turrado <[email protected]>
1 parent b9f0948 commit fdc732d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/clients/auth_flow.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ type AuthFlow interface {
2727
type TokenResponseBody struct {
2828
AccessToken string `json:"access_token"`
2929
ExpiresIn int `json:"expires_in"`
30-
// Deprecated
30+
// Deprecated : RefreshToken is no longer used and the SDK will not attempt to refresh tokens using it but will instead use the AuthFlow implementation to get new tokens.
3131
RefreshToken string `json:"refresh_token"`
32-
Scope string `json:"scope"`
33-
TokenType string `json:"token_type"`
32+
Scope string `json:"scope"`
33+
TokenType string `json:"token_type"`
3434
}
3535

3636
func parseTokenResponse(res *http.Response) (*TokenResponseBody, error) {

0 commit comments

Comments
 (0)