Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.46 KB

ContacttitleAutocompleteElementResponse.md

File metadata and controls

31 lines (22 loc) · 1.46 KB

ContacttitleAutocompleteElementResponse

A Contacttitle AutocompleteElement Response

Properties

Name Type Description Notes
pki_contacttitle_id int The unique ID of the Contacttitle. Valid values: Value
s_contacttitle_name_x str The name of the Contacttitle in the language of the requester

Example

from eZmaxApi.models.contacttitle_autocomplete_element_response import ContacttitleAutocompleteElementResponse

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

# convert the object into a dict
contacttitle_autocomplete_element_response_dict = contacttitle_autocomplete_element_response_instance.to_dict()
# create an instance of ContacttitleAutocompleteElementResponse from a dict
contacttitle_autocomplete_element_response_from_dict = ContacttitleAutocompleteElementResponse.from_dict(contacttitle_autocomplete_element_response_dict)

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