Name |
Type |
Description |
Notes |
total_items |
int |
The total number of items |
[optional] |
page |
int |
The current page |
[optional] |
items |
List[CurrencyDTO] |
The list of paged items |
[optional] |
from data_bridges_client.models.paged_currency_list_dto import PagedCurrencyListDTO
# TODO update the JSON string below
json = "{}"
# create an instance of PagedCurrencyListDTO from a JSON string
paged_currency_list_dto_instance = PagedCurrencyListDTO.from_json(json)
# print the JSON string representation of the object
print(PagedCurrencyListDTO.to_json())
# convert the object into a dict
paged_currency_list_dto_dict = paged_currency_list_dto_instance.to_dict()
# create an instance of PagedCurrencyListDTO from a dict
paged_currency_list_dto_from_dict = PagedCurrencyListDTO.from_dict(paged_currency_list_dto_dict)
[Back to Model list] [Back to API list] [Back to README]