Current section
Files
Jump to
Current section
Files
lib/procore/model/form.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.Form do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:name,
:description,
:form_template_id,
:private,
:fillable_pdf_prostore_file_id,
:fillable_pdf_upload_id,
:prostore_file_ids,
:upload_ids
]
@type t :: %__MODULE__{
:name => String.t(),
:description => String.t(),
:form_template_id => integer(),
:private => boolean() | nil,
:fillable_pdf_prostore_file_id => integer(),
:fillable_pdf_upload_id => String.t() | nil,
:prostore_file_ids => [integer()] | nil,
:upload_ids => [String.t()] | nil
}
def decode(value) do
value
end
end