aboutsummaryrefslogtreecommitdiff
path: root/lib/recaptcha/response.ex
blob: f8adb189bf44fe19b6ee889cd4b03288d497dcf1 (plain)
1
2
3
4
5
6
7
8
defmodule Recaptcha.Response do
  @moduledoc """
    A struct representing the successful recaptcha response from the reCAPTCHA API.
  """
  defstruct challenge_ts: "", hostname: ""

  @type t :: %__MODULE__{challenge_ts: String.t, hostname: String.t}
end