# 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.JsonWebKeySet do @moduledoc """ It is important that this model object is named JSONWebKeySet for \"swagger generate spec\" to generate only on definition of a JSONWebKeySet. Since one with the same name is previously defined as client.Client.JSONWebKeys and this one is last, this one will be effectively written in the swagger spec. """ @derive [Poison.Encoder] defstruct [ :keys ] @type t :: %__MODULE__{ :keys => [Ory.Model.JsonWebKey.t] | nil } end defimpl Poison.Decoder, for: Ory.Model.JsonWebKeySet do import Ory.Deserializer def decode(value, options) do value |> deserialize(:keys, :list, Ory.Model.JsonWebKey, options) end end