Current section
Files
Jump to
Current section
Files
lib/ory/model/rule_handler.ex
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule Ory.Model.RuleHandler do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"config",
:"handler"
]
@type t :: %__MODULE__{
:"config" => map() | nil,
:"handler" => String.t | nil
}
end
defimpl Poison.Decoder, for: Ory.Model.RuleHandler do
def decode(value, _options) do
value
end
end