Skip to content

Latest commit

 

History

History
58 lines (52 loc) · 3.21 KB

ActivesessionResponseCompound.md

File metadata and controls

58 lines (52 loc) · 3.21 KB

EzmaxApi::ActivesessionResponseCompound

Properties

Name Type Description Notes
e_activesession_usertype FieldEActivesessionUsertype
e_activesession_origin FieldEActivesessionOrigin
e_activesession_weekdaystart FieldEActivesessionWeekdaystart
fki_language_id Integer The unique ID of the Language. Valid values: Value
s_company_name_x String The Name of the Company in the language of the requester
s_department_name_x String The Name of the Department in the language of the requester
b_activesession_debug Boolean Whether the active session is in debug or not
b_activesession_issuperadmin Boolean Whether the active session is superadmin or not
pks_customer_code String The customer code assigned to your account
fki_systemconfigurationtype_id Integer The unique ID of the Systemconfigurationtype
fki_signature_id Integer The unique ID of the Signature [optional]
b_systemconfiguration_ezsignpaidbyoffice Boolean Whether if Ezsign is paid by the company or not [optional]
e_systemconfiguration_ezsignofficeplan FieldESystemconfigurationEzsignofficeplan [optional]
e_user_ezsignaccess FieldEUserEzsignaccess
e_user_ezsignprepaid FieldEUserEzsignprepaid [optional]
dt_user_ezsignprepaidexpiration String The eZsign prepaid expiration date [optional]
a_pki_permission_id Array<Integer> An array of permissions granted to the user or api key
obj_user_real ActivesessionResponseCompoundUser
obj_user_cloned ActivesessionResponseCompoundUser [optional]
obj_apikey ActivesessionResponseCompoundApikey [optional]
a_e_module_internalname Array<String> An Array of Registered modules. These are the modules that are Licensed to be used by the User or the API Key.

Example

require 'Ezmaxapi'

instance = EzmaxApi::ActivesessionResponseCompound.new(
  e_activesession_usertype: null,
  e_activesession_origin: null,
  e_activesession_weekdaystart: null,
  fki_language_id: 2,
  s_company_name_x: Acme inc.,
  s_department_name_x: Head Office,
  b_activesession_debug: false,
  b_activesession_issuperadmin: false,
  pks_customer_code: demo,
  fki_systemconfigurationtype_id: 28,
  fki_signature_id: 12,
  b_systemconfiguration_ezsignpaidbyoffice: true,
  e_systemconfiguration_ezsignofficeplan: null,
  e_user_ezsignaccess: null,
  e_user_ezsignprepaid: null,
  dt_user_ezsignprepaidexpiration: 2020-12-31,
  a_pki_permission_id: null,
  obj_user_real: null,
  obj_user_cloned: null,
  obj_apikey: null,
  a_e_module_internalname: null
)