Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

WordPressDebugStatusRequest

Properties

Name Type Description Notes
status bool Status

Example

from plesk_wp_toolkit_client.models.word_press_debug_status_request import WordPressDebugStatusRequest

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

# convert the object into a dict
word_press_debug_status_request_dict = word_press_debug_status_request_instance.to_dict()
# create an instance of WordPressDebugStatusRequest from a dict
word_press_debug_status_request_from_dict = WordPressDebugStatusRequest.from_dict(word_press_debug_status_request_dict)

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