An array of objects containing URLS to use to clone the repository.
Name | Type | Description | Notes |
---|---|---|---|
read_only | List[str] | A list of clone URLs with read-only permissions. This function returns a blank array if the account does not include the Shell Access setting. Important: If the server uses a nonstandard SSH port, the system returns a clone URL that includes the port number. | [optional] |
read_write | List[str] | A list of clone URLs with read-write permissions. This function returns a blank array if the account does not include the Shell Access setting. Important: If the server uses a nonstandard SSH port, the system returns a clone URL that includes the port number. | [optional] |
from clientapi_cpanel.models.inline_response200544_result_clone_urls import InlineResponse200544ResultCloneUrls
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200544ResultCloneUrls from a JSON string
inline_response200544_result_clone_urls_instance = InlineResponse200544ResultCloneUrls.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200544ResultCloneUrls.to_json())
# convert the object into a dict
inline_response200544_result_clone_urls_dict = inline_response200544_result_clone_urls_instance.to_dict()
# create an instance of InlineResponse200544ResultCloneUrls from a dict
inline_response200544_result_clone_urls_from_dict = InlineResponse200544ResultCloneUrls.from_dict(inline_response200544_result_clone_urls_dict)