Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

ReportListResponse

Paginated list of report jobs. Download URLs are not included in list items — call GET /v1/reports/{reportId} to retrieve the download URL for a specific completed report.

Properties

Name Type Description Notes
data List[ReportJob] Page of report jobs
next str Opaque cursor for the next page. Null on the last page.
prev str Opaque cursor for the previous page. Null on the first page.

Example

from fireblocks.models.report_list_response import ReportListResponse

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

# convert the object into a dict
report_list_response_dict = report_list_response_instance.to_dict()
# create an instance of ReportListResponse from a dict
report_list_response_from_dict = ReportListResponse.from_dict(report_list_response_dict)

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