# 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.BimLevel do @moduledoc """ BIM Level Item object """ @derive Jason.Encoder defstruct [ :elevation, :location_id ] @type t :: %__MODULE__{ :elevation => float() | nil, :location_id => integer() | nil } def decode(value) do value end end