Current section

Files

Jump to
boruta lib boruta oauth requests password_request.ex
Raw

lib/boruta/oauth/requests/password_request.ex

defmodule Boruta.Oauth.PasswordRequest do
@moduledoc """
Resource owner password credentials request
"""
@typedoc """
Type representing a resource owner password credentials request as stated in [OAuth 2.0 RFC](https://tools.ietf.org/html/rfc6749#section-4.3.2).
"""
@type t :: %__MODULE__{
client_id: String.t(),
client_secret: String.t(),
username: String.t(),
password: String.t(),
scope: String.t(),
grant_type: String.t()
}
defstruct client_id: "", client_secret: "", username: "", password: "", scope: "", grant_type: "password"
end