# 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.NullValue do @moduledoc """ `NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value. """ @derive Jason.Encoder defstruct [ ] @type t :: %__MODULE__{ } def decode(value) do value end end