View Source Boruta.Oauth.RefreshTokenRequest (Boruta core v2.3.3)

Refresh token request

Summary

Types

t()

Type representing a refresh token request as stated in OAuth 2.0 RFC.

Types

@type t() :: %Boruta.Oauth.RefreshTokenRequest{
  client_authentication: %{type: String.t(), value: String.t()},
  client_id: String.t(),
  grant_type: String.t(),
  refresh_token: String.t(),
  scope: String.t()
}

Type representing a refresh token request as stated in OAuth 2.0 RFC.