Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.46 KB

File metadata and controls

37 lines (28 loc) · 1.46 KB

Report

Properties

Name Type Description Notes
report_id str The report ID generated by Cobo.
report_types List[ReportType] The types of the report.
start_time int The start time of the report. Unix timestamp measured in seconds.
end_time int The end time of the report. Unix timestamp measured in seconds.
created_timestamp int The created time of the report. Unix timestamp measured in seconds.
report_url str The URL of the report. [optional]
report_export_format ReportExportFormat
report_status ReportStatus
initiator str The initiator of this report. Usually the API key used to generate the report.

Example

from cobo_waas2.models.report import Report

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

# convert the object into a dict
report_dict = report_instance.to_dict()
# create an instance of Report from a dict
report_from_dict = Report.from_dict(report_dict)

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