Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

BackgroundTaskWithUrlResponse

Created

Properties

Name Type Description Notes
url str Background task URL
task BackgroundTaskResponse

Example

from plesk_wp_toolkit_client.models.background_task_with_url_response import BackgroundTaskWithUrlResponse

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

# convert the object into a dict
background_task_with_url_response_dict = background_task_with_url_response_instance.to_dict()
# create an instance of BackgroundTaskWithUrlResponse from a dict
background_task_with_url_response_from_dict = BackgroundTaskWithUrlResponse.from_dict(background_task_with_url_response_dict)

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