Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.37 KB

UserAutocompleteElementResponse.md

File metadata and controls

33 lines (24 loc) · 1.37 KB

UserAutocompleteElementResponse

A User AutocompleteElement Response

Properties

Name Type Description Notes
e_user_type FieldEUserType
s_user_name str The description of the User in the language of the requester
pki_user_id int The unique ID of the User
b_user_isactive bool Whether the User is active or not

Example

from eZmaxApi.models.user_autocomplete_element_response import UserAutocompleteElementResponse

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

# convert the object into a dict
user_autocomplete_element_response_dict = user_autocomplete_element_response_instance.to_dict()
# create an instance of UserAutocompleteElementResponse from a dict
user_autocomplete_element_response_form_dict = user_autocomplete_element_response.from_dict(user_autocomplete_element_response_dict)

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