Payload for GET /1/object/activesession/getCurrent
Name | Type | Description | Notes |
---|---|---|---|
e_activesession_usertype | FieldEActivesessionUsertype | ||
e_activesession_origin | FieldEActivesessionOrigin | ||
e_activesession_weekdaystart | FieldEActivesessionWeekdaystart | ||
fki_language_id | int | The unique ID of the Language. Valid values: | Value |
s_company_name_x | str | The Name of the Company in the language of the requester | |
s_department_name_x | str | The Name of the Department in the language of the requester | |
b_activesession_debug | bool | Whether the active session is in debug or not | |
b_activesession_issuperadmin | bool | Whether the active session is superadmin or not | |
pks_customer_code | str | The customer code assigned to your account | |
fki_systemconfigurationtype_id | int | The unique ID of the Systemconfigurationtype | |
fki_signature_id | int | The unique ID of the Signature | [optional] |
b_systemconfiguration_ezsignpaidbyoffice | bool | 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 | str | The eZsign prepaid expiration date | [optional] |
a_pki_permission_id | List[int] | 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 | List[str] | An Array of Registered modules. These are the modules that are Licensed to be used by the User or the API Key. |
from eZmaxApi.models.activesession_get_current_v1_response_m_payload import ActivesessionGetCurrentV1ResponseMPayload
# TODO update the JSON string below
json = "{}"
# create an instance of ActivesessionGetCurrentV1ResponseMPayload from a JSON string
activesession_get_current_v1_response_m_payload_instance = ActivesessionGetCurrentV1ResponseMPayload.from_json(json)
# print the JSON string representation of the object
print(ActivesessionGetCurrentV1ResponseMPayload.to_json())
# convert the object into a dict
activesession_get_current_v1_response_m_payload_dict = activesession_get_current_v1_response_m_payload_instance.to_dict()
# create an instance of ActivesessionGetCurrentV1ResponseMPayload from a dict
activesession_get_current_v1_response_m_payload_form_dict = activesession_get_current_v1_response_m_payload.from_dict(activesession_get_current_v1_response_m_payload_dict)