# 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.Compact1 do @moduledoc """ """ @derive Jason.Encoder defstruct [ :id, :name, :full_code, :origin_data, :origin_id, :standard_cost_code_id ] @type t :: %__MODULE__{ :id => integer() | nil, :name => String.t() | nil, :full_code => String.t() | nil, :origin_data => String.t() | nil, :origin_id => String.t() | nil, :standard_cost_code_id => integer() | nil } def decode(value) do value end end