TimeInterval describes a time interval.
| Name | Type | Description | Notes |
|---|---|---|---|
| start_time | datetime | [optional] | |
| end_time | datetime | [optional] |
from ri.apiclient.models.time_interval import TimeInterval
# TODO update the JSON string below
json = "{}"
# create an instance of TimeInterval from a JSON string
time_interval_instance = TimeInterval.from_json(json)
# print the JSON string representation of the object
print(TimeInterval.to_json())
# convert the object into a dict
time_interval_dict = time_interval_instance.to_dict()
# create an instance of TimeInterval from a dict
time_interval_from_dict = TimeInterval.from_dict(time_interval_dict)