Current section
Files
Jump to
Current section
Files
lib/procore/model/response_log.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.ResponseLog do
@moduledoc """
Response Log body
"""
@derive Jason.Encoder
defstruct [
:comment,
:prostore_file_ids
]
@type t :: %__MODULE__{
:comment => String.t() | nil,
:prostore_file_ids => [integer()] | nil
}
def decode(value) do
value
end
end