Current section
Files
Jump to
Current section
Files
lib/procore/model/company.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.Company do
@moduledoc """
Company
"""
@derive Jason.Encoder
defstruct [
:id,
:name,
:is_active,
:logo_url,
:pcn_business_experience,
:my_company
]
@type t :: %__MODULE__{
:id => integer() | nil,
:name => String.t() | nil,
:is_active => boolean() | nil,
:logo_url => String.t() | nil,
:pcn_business_experience => boolean() | nil,
:my_company => boolean() | nil
}
def decode(value) do
value
end
end