Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

MaintenancePreviewRequest

Properties

Name Type Description Notes
texts MaintenanceTextsRequest
timer MaintenanceTimerRequest
social_networks MaintenanceSocialNetworksRequest

Example

from plesk_wp_toolkit_client.models.maintenance_preview_request import MaintenancePreviewRequest

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

# convert the object into a dict
maintenance_preview_request_dict = maintenance_preview_request_instance.to_dict()
# create an instance of MaintenancePreviewRequest from a dict
maintenance_preview_request_from_dict = MaintenancePreviewRequest.from_dict(maintenance_preview_request_dict)

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