A weekly 4 hour-long window, during which maintenance might occur.
| Name | Type | Description | Notes |
|---|---|---|---|
| time | str | Start of the maintenance window in UTC time. | |
| day_of_the_week | DayOfTheWeek |
from ionoscloud_dbaas_postgres.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)