A set of time periods when the Maintenance Window Configuration is active.
| Name | Type | Description | Notes |
|---|---|---|---|
| end | int | [optional] | |
| id | str | ||
| start | int | [optional] |
from instana_client.models.maintenance_window import MaintenanceWindow
# TODO update the JSON string below
json = "{}"
# create an instance of MaintenanceWindow from a JSON string
maintenance_window_instance = MaintenanceWindow.from_json(json)
# print the JSON string representation of the object
print(MaintenanceWindow.to_json())
# convert the object into a dict
maintenance_window_dict = maintenance_window_instance.to_dict()
# create an instance of MaintenanceWindow from a dict
maintenance_window_from_dict = MaintenanceWindow.from_dict(maintenance_window_dict)