Current section

Files

Jump to
procore_sdk lib procore model bim_file.ex
Raw

lib/procore/model/bim_file.ex

# 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.BimFile do
@moduledoc """
BIM File Item object. Each BIM File can be uniquely identified by name and UUID.
"""
@derive Jason.Encoder
defstruct [
:name,
:uuid
]
@type t :: %__MODULE__{
:name => String.t(),
:uuid => String.t()
}
def decode(value) do
value
end
end