Current section

Files

Jump to
procore_sdk lib procore model managed_equipment.ex
Raw

lib/procore/model/managed_equipment.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.9.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.ManagedEquipment do
@moduledoc """
Managed Equipment Object
"""
@derive Jason.Encoder
defstruct [
:current_project_id,
:name,
:serial_number,
:identification_number,
:description,
:managed_equipment_make_id,
:managed_equipment_model_id,
:managed_equipment_type_id,
:managed_equipment_category_id,
:company_visible,
:year,
:status,
:ownership
]
@type t :: %__MODULE__{
:current_project_id => integer() | nil,
:name => String.t() | nil,
:serial_number => String.t() | nil,
:identification_number => String.t() | nil,
:description => String.t() | nil,
:managed_equipment_make_id => integer() | nil,
:managed_equipment_model_id => integer() | nil,
:managed_equipment_type_id => integer() | nil,
:managed_equipment_category_id => integer() | nil,
:company_visible => boolean() | nil,
:year => integer() | nil,
:status => String.t() | nil,
:ownership => String.t() | nil
}
def decode(value) do
value
end
end