# 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.ProjectUser do @moduledoc """ """ @derive Jason.Encoder defstruct [ :address, :avatar, :business_phone, :business_phone_extension, :city, :country_code, :email_address, :email_signature, :employee_id, :fax_number, :first_name, :initials, :is_active, :is_employee, :job_title, :last_name, :mobile_phone, :notes, :permission_template_id, :state_code, :vendor_id, :zip ] @type t :: %__MODULE__{ :address => String.t() | nil, :avatar => String.t() | nil, :business_phone => String.t() | nil, :business_phone_extension => integer() | nil, :city => String.t() | nil, :country_code => String.t() | nil, :email_address => String.t(), :email_signature => String.t() | nil, :employee_id => String.t() | nil, :fax_number => String.t() | nil, :first_name => String.t() | nil, :initials => String.t() | nil, :is_active => boolean() | nil, :is_employee => boolean() | nil, :job_title => String.t() | nil, :last_name => String.t(), :mobile_phone => String.t() | nil, :notes => String.t() | nil, :permission_template_id => integer() | nil, :state_code => String.t() | nil, :vendor_id => integer() | nil, :zip => String.t() | nil } def decode(value) do value end end