Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

TimeRangeInput

Time range filter for session queries.

Properties

Name Type Description Notes
start datetime Start of time range (inclusive). [optional]
end datetime End of time range (inclusive). [optional]

Example

from mixpeek.models.time_range_input import TimeRangeInput

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

# convert the object into a dict
time_range_input_dict = time_range_input_instance.to_dict()
# create an instance of TimeRangeInput from a dict
time_range_input_from_dict = TimeRangeInput.from_dict(time_range_input_dict)

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