# 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.ProjectServices do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"identity", :"permission" ] @type t :: %__MODULE__{ :"identity" => Ory.Model.ProjectServiceIdentity.t | nil, :"permission" => Ory.Model.ProjectServicePermission.t | nil } end defimpl Poison.Decoder, for: Ory.Model.ProjectServices do import Ory.Deserializer def decode(value, options) do value |> deserialize(:"identity", :struct, Ory.Model.ProjectServiceIdentity, options) |> deserialize(:"permission", :struct, Ory.Model.ProjectServicePermission, options) end end