# 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.ProjectServiceIdentity do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :config ] @type t :: %__MODULE__{ :config => map() } end defimpl Poison.Decoder, for: Ory.Model.ProjectServiceIdentity do def decode(value, _options) do value end end