Supabase.GoTrue.Schemas.SignInWithPassword (supabase_gotrue v0.4.1)

This schema is used to validate and parse the parameters for signing in with a password.

Fields

  • email - The user's email.
  • phone - The user's phone.
  • password - The user's password.
  • options - The options for the sign in.
    • data - The data for the sign in.
    • captcha_token - The captcha token.

Summary

Types

t()

@type t() :: %Supabase.GoTrue.Schemas.SignInWithPassword{
  email: String.t() | nil,
  options:
    %Supabase.GoTrue.Schemas.SignInWithPassword.Options{
      captcha_token: String.t() | nil,
      data: map() | nil
    }
    | nil,
  password: String.t() | nil,
  phone: String.t() | nil
}

Functions

parse(attrs)

to_sign_in_params(signin)