Current section

Files

Jump to
procore_sdk lib procore model form.ex
Raw

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