Current section

Files

Jump to
procore_sdk lib procore model bim_level.ex
Raw

lib/procore/model/bim_level.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.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