Skip to content

Latest commit

 

History

History
57 lines (48 loc) · 4.11 KB

UserRequestCompoundV2.md

File metadata and controls

57 lines (48 loc) · 4.11 KB

UserRequestCompoundV2

A User Object and children

Properties

Name Type Description Notes
pki_user_id int The unique ID of the User [optional]
fki_agent_id int The unique ID of the Agent. [optional]
fki_broker_id int The unique ID of the Broker. [optional]
fki_assistant_id int The unique ID of the Assistant. [optional]
fki_employee_id int The unique ID of the Employee. [optional]
fki_company_id_default int The unique ID of the Company
fki_department_id_default int The unique ID of the Department
fki_timezone_id int The unique ID of the Timezone
fki_language_id int The unique ID of the Language. Valid values: Value
obj_email EmailRequestCompound
fki_billingentityinternal_id int The unique ID of the Billingentityinternal.
obj_phone_home PhoneRequestCompoundV2 [optional]
obj_phone_sms PhoneRequestCompoundV2 [optional]
fki_secretquestion_id int The unique ID of the Secretquestion. Valid values: Value
s_user_secretresponse str The answer to the Secretquestion [optional]
fki_module_id_form int The unique ID of the Module [optional]
e_user_type FieldEUserType
e_user_logintype FieldEUserLogintype
s_user_firstname str The first name of the user
s_user_lastname str The last name of the user
s_user_loginname str The login name of the User.
s_user_jobtitle str The job title of the user [optional]
e_user_ezsignaccess FieldEUserEzsignaccess
b_user_isactive bool Whether the User is active or not
b_user_validatebyadministration bool Whether if the transactions in which the User is implicated must be validated by administrative personnel or not [optional]
b_user_validatebydirector bool Whether if the transactions in which the User is implicated must be validated by a director or not [optional]
b_user_attachmentautoverified bool Whether if Attachments uploaded by the User must be validated or not [optional]
b_user_changepassword bool Whether if the User is forced to change its password [optional]

Example

from eZmaxApi.models.user_request_compound_v2 import UserRequestCompoundV2

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

# convert the object into a dict
user_request_compound_v2_dict = user_request_compound_v2_instance.to_dict()
# create an instance of UserRequestCompoundV2 from a dict
user_request_compound_v2_form_dict = user_request_compound_v2.from_dict(user_request_compound_v2_dict)

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