Current section

Files

Jump to
procore_sdk lib procore model response_log.ex
Raw

lib/procore/model/response_log.ex

# 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