Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.9 KB

ActivesessionResponse.md

File metadata and controls

48 lines (39 loc) · 2.9 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
b_activesession_attachment bool Can access attachment when we clone a user [optional]
b_activesession_canafe bool Can access canafe when we clone a user [optional]
b_activesession_financial bool Can access financial element when we clone a user [optional]
b_activesession_realestatecompleted bool Can access closed realestate folders when we clone a user [optional]
e_activesession_ezsign FieldEActivesessionEzsign [optional]
e_activesession_ezsignaccess FieldEActivesessionEzsignaccess
e_activesession_ezsignprepaid FieldEActivesessionEzsignprepaid [optional]
e_activesession_realestateinprogress FieldEActivesessionRealestateinprogress [optional]
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_from_dict = ActivesessionResponse.from_dict(activesession_response_dict)

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