Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.99 KB

ActivesessionResponse.md

File metadata and controls

40 lines (31 loc) · 1.99 KB

ActivesessionResponse

An Activesession Object

Properties

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]

Example

from eZmaxApi.models.activesession_response import ActivesessionResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ActivesessionResponse from a JSON string
activesession_response_instance = ActivesessionResponse.from_json(json)
# print the JSON string representation of the object
print(ActivesessionResponse.to_json())

# convert the object into a dict
activesession_response_dict = activesession_response_instance.to_dict()
# create an instance of ActivesessionResponse from a dict
activesession_response_form_dict = activesession_response.from_dict(activesession_response_dict)

[Back to Model list] [Back to API list] [Back to README]