Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.5 KB

PhonetypeAutocompleteElementResponse.md

File metadata and controls

32 lines (23 loc) · 1.5 KB

PhonetypeAutocompleteElementResponse

A Phonetype AutocompleteElement Response

Properties

Name Type Description Notes
pki_phonetype_id int The unique ID of the Phonetype. Valid values: Value
s_phonetype_name_x str The name of the Phonetype in the language of the requester
b_phonetype_isactive bool Whether the Phonetype is active or not

Example

from eZmaxApi.models.phonetype_autocomplete_element_response import PhonetypeAutocompleteElementResponse

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

# convert the object into a dict
phonetype_autocomplete_element_response_dict = phonetype_autocomplete_element_response_instance.to_dict()
# create an instance of PhonetypeAutocompleteElementResponse from a dict
phonetype_autocomplete_element_response_form_dict = phonetype_autocomplete_element_response.from_dict(phonetype_autocomplete_element_response_dict)

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