Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 956 Bytes

File metadata and controls

30 lines (22 loc) · 956 Bytes

TimeInterval

TimeInterval describes a time interval.

Properties

Name Type Description Notes
start_time datetime [optional]
end_time datetime [optional]

Example

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)

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