Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

TimeFrame

Time range for which the data should be retrieved.

Properties

Name Type Description Notes
to int end of timeframe expressed as the Unix epoch time in milliseconds. Eg: `ISO 8601` standard time `2024-06-27T05:05:55.615Z` can be represented as `1719464755615` in Unix epoch time in milliseconds. [optional]
window_size int windowSize in milliseconds [optional]

Example

from instana_client.models.time_frame import TimeFrame

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

# convert the object into a dict
time_frame_dict = time_frame_instance.to_dict()
# create an instance of TimeFrame from a dict
time_frame_from_dict = TimeFrame.from_dict(time_frame_dict)

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