# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.ElementsConfiguration do @moduledoc """ ElementsConfiguration is the subset of a project's configuration that Ory Elements consumes to customize its behavior and appearance. It mirrors the `ProjectConfiguration` type in `@ory/elements-react` and intentionally omits account-experience-only fields (stylesheet, locales, translations, favicons). """ @derive Jason.Encoder defstruct [ :contact_url, :default_redirect_url, :error_ui_url, :hide_ory_branding, :hide_registration_link, :login_ui_url, :logo_dark_url, :logo_light_url, :name, :privacy_policy_url, :recovery_enabled, :recovery_ui_url, :registration_enabled, :registration_ui_url, :settings_ui_url, :terms_of_service_url, :verification_enabled, :verification_ui_url ] @type t :: %__MODULE__{ :contact_url => String.t | nil, :default_redirect_url => String.t, :error_ui_url => String.t, :hide_ory_branding => boolean(), :hide_registration_link => boolean(), :login_ui_url => String.t, :logo_dark_url => String.t | nil, :logo_light_url => String.t | nil, :name => String.t, :privacy_policy_url => String.t | nil, :recovery_enabled => boolean(), :recovery_ui_url => String.t, :registration_enabled => boolean(), :registration_ui_url => String.t, :settings_ui_url => String.t, :terms_of_service_url => String.t | nil, :verification_enabled => boolean(), :verification_ui_url => String.t } def decode(value) do value end end