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
Path to the WordPress archive file (relative to website root)
sql_path
str
Path to the database SQL file (relative to website root)
Example
fromhostinger_api.models.word_press_v1_installations_import_word_press_requestimportWordPressV1InstallationsImportWordPressRequest# TODO update the JSON string belowjson="{}"# create an instance of WordPressV1InstallationsImportWordPressRequest from a JSON stringword_press_v1_installations_import_word_press_request_instance=WordPressV1InstallationsImportWordPressRequest.from_json(json)
# print the JSON string representation of the objectprint(WordPressV1InstallationsImportWordPressRequest.to_json())
# convert the object into a dictword_press_v1_installations_import_word_press_request_dict=word_press_v1_installations_import_word_press_request_instance.to_dict()
# create an instance of WordPressV1InstallationsImportWordPressRequest from a dictword_press_v1_installations_import_word_press_request_from_dict=WordPressV1InstallationsImportWordPressRequest.from_dict(word_press_v1_installations_import_word_press_request_dict)