Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.47 KB

File metadata and controls

30 lines (21 loc) · 1.47 KB

WordPressV1InstallationsUpdateInstallationRequest

Properties

Name Type Description Notes
minor bool Update the minor version only. [optional] [default to False]
version str Update to a specific WordPress core version. [optional]

Example

from hostinger_api.models.word_press_v1_installations_update_installation_request import WordPressV1InstallationsUpdateInstallationRequest

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

# convert the object into a dict
word_press_v1_installations_update_installation_request_dict = word_press_v1_installations_update_installation_request_instance.to_dict()
# create an instance of WordPressV1InstallationsUpdateInstallationRequest from a dict
word_press_v1_installations_update_installation_request_from_dict = WordPressV1InstallationsUpdateInstallationRequest.from_dict(word_press_v1_installations_update_installation_request_dict)

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