You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WordPress installation (software) identifiers to validate.
force
bool
Force fresh validation without cache. Preferable for troubleshooting purposes.
[optional] [default to False]
Example
fromhostinger_api.models.word_press_v1_installations_check_is_valid_requestimportWordPressV1InstallationsCheckIsValidRequest# TODO update the JSON string belowjson="{}"# create an instance of WordPressV1InstallationsCheckIsValidRequest from a JSON stringword_press_v1_installations_check_is_valid_request_instance=WordPressV1InstallationsCheckIsValidRequest.from_json(json)
# print the JSON string representation of the objectprint(WordPressV1InstallationsCheckIsValidRequest.to_json())
# convert the object into a dictword_press_v1_installations_check_is_valid_request_dict=word_press_v1_installations_check_is_valid_request_instance.to_dict()
# create an instance of WordPressV1InstallationsCheckIsValidRequest from a dictword_press_v1_installations_check_is_valid_request_from_dict=WordPressV1InstallationsCheckIsValidRequest.from_dict(word_press_v1_installations_check_is_valid_request_dict)