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