# 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.ResponseLog do @moduledoc """ Response Log body """ @derive Jason.Encoder defstruct [ :comment, :prostore_file_ids, :upload_ids, :document_management_document_revision_ids ] @type t :: %__MODULE__{ :comment => String.t() | nil, :prostore_file_ids => [integer()] | nil, :upload_ids => [String.t()] | nil, :document_management_document_revision_ids => [String.t()] | nil } def decode(value) do value end end