Current section
Files
Jump to
Current section
Files
lib/procore/model/office_2.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.Office2 do
@moduledoc """
Office object
"""
@derive Jason.Encoder
defstruct [
:name,
:address,
:city,
:state_code,
:country_code,
:zip,
:phone,
:fax,
:division,
:logo
]
@type t :: %__MODULE__{
:name => String.t(),
:address => String.t() | nil,
:city => String.t() | nil,
:state_code => String.t() | nil,
:country_code => String.t() | nil,
:zip => String.t() | nil,
:phone => String.t() | nil,
:fax => String.t() | nil,
:division => String.t() | nil,
:logo => String.t() | nil
}
def decode(value) do
value
end
end