# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Procore.Model.Body150 do @moduledoc """ """ @derive Jason.Encoder defstruct [ :app_uid, :project_id, :company_id, :app_installation ] @type t :: %__MODULE__{ :app_uid => String.t(), :project_id => integer(), :company_id => integer(), :app_installation => Procore.Model.Body150AppInstallation.t() } alias Procore.Deserializer def decode(value) do value |> Deserializer.deserialize(:app_installation, :struct, Procore.Model.Body150AppInstallation) end end