# 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.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