A object containing information about a cloned repository's source repository. Note: The function only returns this object if it will clone a repository.
| Name | Type | Description | Notes |
|---|---|---|---|
| remote_name | str | The source repository's name. | [optional] |
| url | str | The source repository's clone URL. | [optional] |
from clientapi_cpanel.models.inline_response200542_result_data_source_repository import InlineResponse200542ResultDataSourceRepository
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200542ResultDataSourceRepository from a JSON string
inline_response200542_result_data_source_repository_instance = InlineResponse200542ResultDataSourceRepository.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200542ResultDataSourceRepository.to_json())
# convert the object into a dict
inline_response200542_result_data_source_repository_dict = inline_response200542_result_data_source_repository_instance.to_dict()
# create an instance of InlineResponse200542ResultDataSourceRepository from a dict
inline_response200542_result_data_source_repository_from_dict = InlineResponse200542ResultDataSourceRepository.from_dict(inline_response200542_result_data_source_repository_dict)