An object containing information about the source repository. Note: The function only returns this object if you cloned a source 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_response200545_result_data_source_repository import InlineResponse200545ResultDataSourceRepository
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200545ResultDataSourceRepository from a JSON string
inline_response200545_result_data_source_repository_instance = InlineResponse200545ResultDataSourceRepository.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200545ResultDataSourceRepository.to_json())
# convert the object into a dict
inline_response200545_result_data_source_repository_dict = inline_response200545_result_data_source_repository_instance.to_dict()
# create an instance of InlineResponse200545ResultDataSourceRepository from a dict
inline_response200545_result_data_source_repository_from_dict = InlineResponse200545ResultDataSourceRepository.from_dict(inline_response200545_result_data_source_repository_dict)