# 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.SuccessfulProjectUpdate do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :"project", :"warnings" ] @type t :: %__MODULE__{ :"project" => Ory.Model.Project.t, :"warnings" => [Ory.Model.Warning.t] } end defimpl Poison.Decoder, for: Ory.Model.SuccessfulProjectUpdate do import Ory.Deserializer def decode(value, options) do value |> deserialize(:"project", :struct, Ory.Model.Project, options) |> deserialize(:"warnings", :list, Ory.Model.Warning, options) end end