Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.39 KB

File metadata and controls

32 lines (23 loc) · 1.39 KB

CurrencyAutocompleteElementResponse

A Currency AutocompleteElement Response

Properties

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

Example

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)

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