Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 3.4 KB

File metadata and controls

56 lines (50 loc) · 3.4 KB

EzmaxApi::SystemconfigurationResponse

Properties

Name Type Description Notes
pki_systemconfiguration_id Integer The unique ID of the Systemconfiguration
fki_systemconfigurationtype_id Integer The unique ID of the Systemconfigurationtype
fki_branding_id Integer The unique ID of the Branding [optional]
fki_timezone_id_default Integer The unique ID of the Timezone
s_timezone_name_default String The description of the Timezone
s_systemconfigurationtype_description_x String The description of the Systemconfigurationtype in the language of the requester
e_systemconfiguration_newexternaluseraction FieldESystemconfigurationNewexternaluseraction
e_systemconfiguration_language1 FieldESystemconfigurationLanguage1
e_systemconfiguration_language2 FieldESystemconfigurationLanguage2
e_systemconfiguration_ezsign FieldESystemconfigurationEzsign [optional]
e_systemconfiguration_ezsignofficeplan FieldESystemconfigurationEzsignofficeplan [optional]
b_systemconfiguration_ezsignpaidbyoffice Boolean Whether if Ezsign is paid by the company or not [optional]
b_systemconfiguration_ezsignpersonnal Boolean Whether if we allow the creation of personal files in eZsign
b_systemconfiguration_hascreditcardmerchant Boolean Whether there is a creditcard merchant configured or not [optional]
b_systemconfiguration_isdisposalactive Boolean Whether is Disposal processus is active or not [optional]
b_systemconfiguration_sspr Boolean Whether if we allow SSPR
dt_systemconfiguration_readonlyexpirationstart String The start date where the system will be in read only [optional]
dt_systemconfiguration_readonlyexpirationend String The end date where the system will be in read only [optional]
obj_branding CustomBrandingResponse [optional]
i_systemconfiguration_ezsignreminderhoursend Integer The hour we will send the eZsign reminders [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::SystemconfigurationResponse.new(
  pki_systemconfiguration_id: 1,
  fki_systemconfigurationtype_id: 28,
  fki_branding_id: 78,
  fki_timezone_id_default: 247,
  s_timezone_name_default: Default,
  s_systemconfigurationtype_description_x: eZsign (Pro),
  e_systemconfiguration_newexternaluseraction: null,
  e_systemconfiguration_language1: null,
  e_systemconfiguration_language2: null,
  e_systemconfiguration_ezsign: null,
  e_systemconfiguration_ezsignofficeplan: null,
  b_systemconfiguration_ezsignpaidbyoffice: true,
  b_systemconfiguration_ezsignpersonnal: true,
  b_systemconfiguration_hascreditcardmerchant: null,
  b_systemconfiguration_isdisposalactive: null,
  b_systemconfiguration_sspr: true,
  dt_systemconfiguration_readonlyexpirationstart: 2020-12-31,
  dt_systemconfiguration_readonlyexpirationend: 2021-12-31,
  obj_branding: null,
  i_systemconfiguration_ezsignreminderhoursend: 1
)