Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

ReportRequest.md

File metadata and controls

31 lines (22 loc) · 1.32 KB

ReportRequest

Properties

Name Type Description Notes
report_name str Report slug, this is passed when calling the create report endpoint [optional]
params Dict[str, object] Advanced report filtering. e,g: {'username': 'username1, username2' } [optional]
query str Advanced Query to run the report, supports SQL Like queries. e.g For date type filtering date_joined > '2021-01-01' See https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.query.html#pandas.DataFrame.query [optional]

Example

from iblai.models.report_request import ReportRequest

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

# convert the object into a dict
report_request_dict = report_request_instance.to_dict()
# create an instance of ReportRequest from a dict
report_request_from_dict = ReportRequest.from_dict(report_request_dict)

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