Skip to content

Latest commit

 

History

History
72 lines (66 loc) · 4.29 KB

UserRequest.md

File metadata and controls

72 lines (66 loc) · 4.29 KB

EzmaxApi::UserRequest

Properties

Name Type Description Notes
pki_user_id Integer The unique ID of the User [optional]
fki_agent_id Integer The unique ID of the Agent. [optional]
fki_broker_id Integer The unique ID of the Broker. [optional]
fki_assistant_id Integer The unique ID of the Assistant. [optional]
fki_employee_id Integer The unique ID of the Employee. [optional]
fki_company_id_default Integer The unique ID of the Company
fki_department_id_default Integer The unique ID of the Department
fki_timezone_id Integer The unique ID of the Timezone
fki_language_id Integer The unique ID of the Language. Valid values: Value
obj_email EmailRequestCompound
fki_billingentityinternal_id Integer The unique ID of the Billingentityinternal.
obj_phone_home PhoneRequestCompound [optional]
obj_phone_sms PhoneRequestCompound [optional]
fki_secretquestion_id Integer The unique ID of the Secretquestion. Valid values: Value
s_user_secretresponse String The answer to the Secretquestion [optional]
fki_module_id_form Integer The unique ID of the Module [optional]
e_user_type FieldEUserType
e_user_logintype FieldEUserLogintype
s_user_firstname String The first name of the user
s_user_lastname String The last name of the user
s_user_loginname String The login name of the User.
s_user_jobtitle String The job title of the user [optional]
e_user_ezsignaccess FieldEUserEzsignaccess
b_user_isactive Boolean Whether the User is active or not
b_user_validatebyadministration Boolean Whether if the transactions in which the User is implicated must be validated by administrative personnel or not [optional]
b_user_validatebydirector Boolean Whether if the transactions in which the User is implicated must be validated by a director or not [optional]
b_user_attachmentautoverified Boolean Whether if Attachments uploaded by the User must be validated or not [optional]
b_user_changepassword Boolean Whether if the User is forced to change its password [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::UserRequest.new(
  pki_user_id: 70,
  fki_agent_id: 1,
  fki_broker_id: 26,
  fki_assistant_id: 1,
  fki_employee_id: 31,
  fki_company_id_default: 1,
  fki_department_id_default: 21,
  fki_timezone_id: 247,
  fki_language_id: 2,
  obj_email: null,
  fki_billingentityinternal_id: 1,
  obj_phone_home: null,
  obj_phone_sms: null,
  fki_secretquestion_id: 7,
  s_user_secretresponse: Montreal General Hospital,
  fki_module_id_form: 40,
  e_user_type: null,
  e_user_logintype: null,
  s_user_firstname: John,
  s_user_lastname: Doe,
  s_user_loginname: JohnDoe,
  s_user_jobtitle: Sales Representative,
  e_user_ezsignaccess: null,
  b_user_isactive: true,
  b_user_validatebyadministration: false,
  b_user_validatebydirector: false,
  b_user_attachmentautoverified: true,
  b_user_changepassword: true
)