Current section

Files

Jump to
procore_sdk lib procore model compact_1.ex
Raw

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