Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 3.61 KB

ProvinceAutocompleteElementResponse.md

File metadata and controls

34 lines (25 loc) · 3.61 KB

ProvinceAutocompleteElementResponse

A Province AutocompleteElement Response

Properties

Name Type Description Notes
pki_province_id int The unique ID of the Province. Here are some common values (Complete list must be retrieved from API): Value
fki_country_id int The unique ID of the Country. Here are some common values (Complete list must be retrieved from API): Value
s_province_name_x str The name of the Province in the language of the requester
s_province_shortname str The shortname of the Province
b_province_isactive bool Whether the Province is active or not

Example

from eZmaxApi.models.province_autocomplete_element_response import ProvinceAutocompleteElementResponse

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

# convert the object into a dict
province_autocomplete_element_response_dict = province_autocomplete_element_response_instance.to_dict()
# create an instance of ProvinceAutocompleteElementResponse from a dict
province_autocomplete_element_response_form_dict = province_autocomplete_element_response.from_dict(province_autocomplete_element_response_dict)

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