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