Name |
Type |
Description |
Notes |
report_id |
str |
Used to download the report |
[optional] |
report_name |
str |
Report slug, this is passed when calling the create report endpoint |
[optional] |
state |
StateEnum |
Report States * `pending` - Pending * `running` - Running * `accumulating` - Accumulating * `processing` - Processing * `storing` - Storing * `completed` - Completed * `cancelled` - Cancelled * `error` - Error * `expired` - Expired |
[optional] |
started_on |
str |
Report request timestamp (ISO 8601) |
[optional] |
owner |
str |
Report Owner |
[optional] |
expires |
str |
When report would expire and not available for download anymore |
[optional] |
url |
str |
Download link for report when available |
[optional] |
from iblai.models.report_status import ReportStatus
# TODO update the JSON string below
json = "{}"
# create an instance of ReportStatus from a JSON string
report_status_instance = ReportStatus.from_json(json)
# print the JSON string representation of the object
print(ReportStatus.to_json())
# convert the object into a dict
report_status_dict = report_status_instance.to_dict()
# create an instance of ReportStatus from a dict
report_status_from_dict = ReportStatus.from_dict(report_status_dict)
[Back to Model list] [Back to API list] [Back to README]