Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

MaintenanceSettingsResponseTimer

Countdown timer

Properties

Name Type Description Notes
enabled bool Enable timer
days float Remaining days
hours float Remaining hours
minutes float Remaining minutes

Example

from plesk_wp_toolkit_client.models.maintenance_settings_response_timer import MaintenanceSettingsResponseTimer

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

# convert the object into a dict
maintenance_settings_response_timer_dict = maintenance_settings_response_timer_instance.to_dict()
# create an instance of MaintenanceSettingsResponseTimer from a dict
maintenance_settings_response_timer_from_dict = MaintenanceSettingsResponseTimer.from_dict(maintenance_settings_response_timer_dict)

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