A Secretquestion AutocompleteElement Response
Name | Type | Description | Notes |
---|---|---|---|
s_secretquestion_text_x | str | The text of the Secretquestion in the language of the requester | |
pki_secretquestion_id | int | The unique ID of the Secretquestion. Valid values: | Value |
b_secretquestion_isactive | bool | Whether the Secretquestion is active or not |
from eZmaxApi.models.secretquestion_autocomplete_element_response import SecretquestionAutocompleteElementResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SecretquestionAutocompleteElementResponse from a JSON string
secretquestion_autocomplete_element_response_instance = SecretquestionAutocompleteElementResponse.from_json(json)
# print the JSON string representation of the object
print(SecretquestionAutocompleteElementResponse.to_json())
# convert the object into a dict
secretquestion_autocomplete_element_response_dict = secretquestion_autocomplete_element_response_instance.to_dict()
# create an instance of SecretquestionAutocompleteElementResponse from a dict
secretquestion_autocomplete_element_response_form_dict = secretquestion_autocomplete_element_response.from_dict(secretquestion_autocomplete_element_response_dict)