Current section
Files
Jump to
Current section
Files
lib/procore/model/program.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.Program do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:id,
:name,
:address_freeform,
:website,
:photo_prostore_file_id,
:logo_prostore_file_id,
:photo_prostore_file_url,
:logo_prostore_file_url,
:project_count
]
@type t :: %__MODULE__{
:id => integer() | nil,
:name => String.t() | nil,
:address_freeform => String.t() | nil,
:website => String.t() | nil,
:photo_prostore_file_id => integer() | nil,
:logo_prostore_file_id => integer() | nil,
:photo_prostore_file_url => String.t() | nil,
:logo_prostore_file_url => String.t() | nil,
:project_count => integer() | nil
}
def decode(value) do
value
end
end