Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

File metadata and controls

33 lines (24 loc) · 1.04 KB

TimeWindow

Time Window type of the SLO, it could be Fixed or Rolling

Properties

Name Type Description Notes
duration int Duration of the Time Window
duration_unit str Unit of the Time Window Duration
timezone str Timezone string [optional]
type str

Example

from instana_client.models.time_window import TimeWindow

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

# convert the object into a dict
time_window_dict = time_window_instance.to_dict()
# create an instance of TimeWindow from a dict
time_window_from_dict = TimeWindow.from_dict(time_window_dict)

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