Current section

Files

Jump to
procore_sdk lib procore model image_2.ex
Raw

lib/procore/model/image_2.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.Image2 do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:private,
:description,
:image_category_id,
:location_id,
:mt_location,
:trade_ids,
:log_date
]
@type t :: %__MODULE__{
:private => boolean() | nil,
:description => String.t() | nil,
:image_category_id => integer() | nil,
:location_id => integer() | nil,
:mt_location => [String.t()] | nil,
:trade_ids => [integer()] | nil,
:log_date => String.t() | nil
}
def decode(value) do
value
end
end