# NOTE: This file is auto generated by OpenAPI Generator 7.7.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.AccountExperienceConfiguration do @moduledoc """ """ @derive Jason.Encoder defstruct [ :default_redirect_url, :error_ui_url, :favicon_dark_url, :favicon_light_url, :login_ui_url, :logo_dark_url, :logo_light_url, :name, :recovery_enabled, :recovery_ui_url, :registration_enabled, :registration_ui_url, :settings_ui_url, :stylesheet, :verification_enabled, :verification_ui_url ] @type t :: %__MODULE__{ :default_redirect_url => String.t, :error_ui_url => String.t, :favicon_dark_url => String.t | nil, :favicon_light_url => String.t | nil, :login_ui_url => String.t, :logo_dark_url => String.t | nil, :logo_light_url => String.t | nil, :name => String.t, :recovery_enabled => boolean(), :recovery_ui_url => String.t, :registration_enabled => boolean(), :registration_ui_url => String.t, :settings_ui_url => String.t, :stylesheet => String.t | nil, :verification_enabled => boolean(), :verification_ui_url => String.t } def decode(value) do value end end