| Name |
Type |
Description |
Notes |
from instana_client.models.rolling_time_window import RollingTimeWindow
# TODO update the JSON string below
json = "{}"
# create an instance of RollingTimeWindow from a JSON string
rolling_time_window_instance = RollingTimeWindow.from_json(json)
# print the JSON string representation of the object
print(RollingTimeWindow.to_json())
# convert the object into a dict
rolling_time_window_dict = rolling_time_window_instance.to_dict()
# create an instance of RollingTimeWindow from a dict
rolling_time_window_from_dict = RollingTimeWindow.from_dict(rolling_time_window_dict)
[Back to Model list] [Back to API list] [Back to README]