Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

ClonePathValidatorRequest

Properties

Name Type Description Notes
domain str Domain name
installation_path str Installation path of cloned WordPress site (relative to the root directory of the domain) [optional]

Example

from plesk_wp_toolkit_client.models.clone_path_validator_request import ClonePathValidatorRequest

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

# convert the object into a dict
clone_path_validator_request_dict = clone_path_validator_request_instance.to_dict()
# create an instance of ClonePathValidatorRequest from a dict
clone_path_validator_request_from_dict = ClonePathValidatorRequest.from_dict(clone_path_validator_request_dict)

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