Current section

Files

Jump to
procore_sdk lib procore model body_73.ex
Raw

lib/procore/model/body_73.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.8.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.Body73 do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:company_id,
:developer_app_id,
:notes,
:implicit
]
@type t :: %__MODULE__{
:company_id => integer(),
:developer_app_id => String.t(),
:notes => String.t() | nil,
:implicit => boolean()
}
def decode(value) do
value
end
end