Current section
Files
Jump to
Current section
Files
lib/procore/model/body_139.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.9.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.Body139 do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:project_id,
:view,
:bim_geometry_file_bundle
]
@type t :: %__MODULE__{
:project_id => integer(),
:view => String.t() | nil,
:bim_geometry_file_bundle => Procore.Model.Body139BimGeometryFileBundle.t()
}
alias Procore.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(
:bim_geometry_file_bundle,
:struct,
Procore.Model.Body139BimGeometryFileBundle
)
end
end