Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.34 KB

File metadata and controls

31 lines (23 loc) · 1.34 KB

GetInternalCurrencies200ResponseDataItem

Properties

Name Type Description Notes
id str [optional]
ratio float EUR exchange rate [optional]
nominal int [optional]
var_date object [optional]

Example

from bsg_api.models.get_internal_currencies200_response_data_item import GetInternalCurrencies200ResponseDataItem

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

# convert the object into a dict
get_internal_currencies200_response_data_item_dict = get_internal_currencies200_response_data_item_instance.to_dict()
# create an instance of GetInternalCurrencies200ResponseDataItem from a dict
get_internal_currencies200_response_data_item_from_dict = GetInternalCurrencies200ResponseDataItem.from_dict(get_internal_currencies200_response_data_item_dict)

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