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
Installation path of cloned WordPress site (relative to the root directory of the domain)
[optional]
Example
fromplesk_wp_toolkit_client.models.clone_path_validator_requestimportClonePathValidatorRequest# TODO update the JSON string belowjson="{}"# create an instance of ClonePathValidatorRequest from a JSON stringclone_path_validator_request_instance=ClonePathValidatorRequest.from_json(json)
# print the JSON string representation of the objectprint(ClonePathValidatorRequest.to_json())
# convert the object into a dictclone_path_validator_request_dict=clone_path_validator_request_instance.to_dict()
# create an instance of ClonePathValidatorRequest from a dictclone_path_validator_request_from_dict=ClonePathValidatorRequest.from_dict(clone_path_validator_request_dict)