Name | Type | Description | Notes |
---|---|---|---|
total_items | int | The total number of items | [optional] |
page | int | The current page | [optional] |
items | List[MFIProcessedDataDTO] | The list of processed data | [optional] |
from data_bridges_client.models.paged_processed_data_dto import PagedProcessedDataDTO
# TODO update the JSON string below
json = "{}"
# create an instance of PagedProcessedDataDTO from a JSON string
paged_processed_data_dto_instance = PagedProcessedDataDTO.from_json(json)
# print the JSON string representation of the object
print(PagedProcessedDataDTO.to_json())
# convert the object into a dict
paged_processed_data_dto_dict = paged_processed_data_dto_instance.to_dict()
# create an instance of PagedProcessedDataDTO from a dict
paged_processed_data_dto_from_dict = PagedProcessedDataDTO.from_dict(paged_processed_data_dto_dict)