Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

InstallationScreenshot

Properties

Name Type Description Notes
created_at str Date and time the screenshot was taken
url str Screenshot URL

Example

from plesk_wp_toolkit_client.models.installation_screenshot import InstallationScreenshot

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

# convert the object into a dict
installation_screenshot_dict = installation_screenshot_instance.to_dict()
# create an instance of InstallationScreenshot from a dict
installation_screenshot_from_dict = InstallationScreenshot.from_dict(installation_screenshot_dict)

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