A Currency AutocompleteElement Response
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_currency_id | int | The unique ID of the Currency. | |
| s_currency_description_x | str | The description of the Currency in the language of the requester | |
| b_currency_isactive | bool | Whether the Currency is active or not |
from eZmaxApi.models.currency_autocomplete_element_response import CurrencyAutocompleteElementResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CurrencyAutocompleteElementResponse from a JSON string
currency_autocomplete_element_response_instance = CurrencyAutocompleteElementResponse.from_json(json)
# print the JSON string representation of the object
print(CurrencyAutocompleteElementResponse.to_json())
# convert the object into a dict
currency_autocomplete_element_response_dict = currency_autocomplete_element_response_instance.to_dict()
# create an instance of CurrencyAutocompleteElementResponse from a dict
currency_autocomplete_element_response_from_dict = CurrencyAutocompleteElementResponse.from_dict(currency_autocomplete_element_response_dict)