lib/ory/model/identity_with_credentials_password_config.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.2.0 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule Ory.Model.IdentityWithCredentialsPasswordConfig do
  @moduledoc """
  Create Identity and Import Password Credentials Configuration
  """

  @derive Jason.Encoder
  defstruct [
    :hashed_password,
    :password
  ]

  @type t :: %__MODULE__{
    :hashed_password => String.t | nil,
    :password => String.t | nil
  }

  def decode(value) do
    value
  end
end