Request object for reports.
| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | The directory path to perform this operation. | [optional] |
from sensorpush_api.models.reports_request import ReportsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ReportsRequest from a JSON string
reports_request_instance = ReportsRequest.from_json(json)
# print the JSON string representation of the object
print ReportsRequest.to_json()
# convert the object into a dict
reports_request_dict = reports_request_instance.to_dict()
# create an instance of ReportsRequest from a dict
reports_request_from_dict = ReportsRequest.from_dict(reports_request_dict)