Current section

Files

Jump to
procore_sdk lib procore model body_139.ex
Raw

lib/procore/model/body_139.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.7.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.Body139 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.Body139AppInstallation.t()
}
alias Procore.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:app_installation, :struct, Procore.Model.Body139AppInstallation)
end
end