Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.56 KB

File metadata and controls

31 lines (22 loc) · 1.56 KB

InlineResponse200545ResultDataSourceRepository

An object containing information about the source repository. Note: The function only returns this object if you cloned a source repository.

Properties

Name Type Description Notes
remote_name str The source repository's name. [optional]
url str The source repository's clone URL. [optional]

Example

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)

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