Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.44 KB

UserlogintypeAutocompleteElementResponse.md

File metadata and controls

32 lines (23 loc) · 2.44 KB

UserlogintypeAutocompleteElementResponse

A Userlogintype AutocompleteElement Response

Properties

Name Type Description Notes
pki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
s_userlogintype_description_x str The description of the Userlogintype in the language of the requester
b_userlogintype_isactive bool Whether the Userlogintype is active or not

Example

from eZmaxApi.models.userlogintype_autocomplete_element_response import UserlogintypeAutocompleteElementResponse

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

# convert the object into a dict
userlogintype_autocomplete_element_response_dict = userlogintype_autocomplete_element_response_instance.to_dict()
# create an instance of UserlogintypeAutocompleteElementResponse from a dict
userlogintype_autocomplete_element_response_form_dict = userlogintype_autocomplete_element_response.from_dict(userlogintype_autocomplete_element_response_dict)

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