| Name | Type | Description | Notes |
|---|---|---|---|
| available_branches | List[str] | An list of available branches for the cloned or existing repository, if any exist. | [optional] |
| branch | str | The repository's current branch. * `null` — The system has not finished the clone process for the repository, or no local branches exist. | [optional] |
| clone_urls | InlineResponse200542ResultDataCloneUrls | [optional] | |
| last_update | str | Information about the most-recent (HEAD) commit for the current branch. Note: * The system may require a large amount of time to clone large repositories. Until this process finishes, HEAD information is unavailable. * `null` is the only possible value. | [optional] |
| name | str | The repository's display name. | [optional] |
| repository_root | str | The absolute path of the directory that contains the repository in the user's `home` directory. | [optional] |
| source_repository | InlineResponse200542ResultDataSourceRepository | [optional] | |
| tasks | List[InlineResponse200542ResultDataTasks] | An array of objects containing information about the Task Queue system's process that will clone the repository. Note: The function only returns this value if it will clone a repository. | [optional] |
| type | str | The repository type. * `git` — A Git repostiory. Note: `git` is the only possible value. | [optional] |
from clientapi_cpanel.models.inline_response200542_result_data import InlineResponse200542ResultData
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200542ResultData from a JSON string
inline_response200542_result_data_instance = InlineResponse200542ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200542ResultData.to_json())
# convert the object into a dict
inline_response200542_result_data_dict = inline_response200542_result_data_instance.to_dict()
# create an instance of InlineResponse200542ResultData from a dict
inline_response200542_result_data_from_dict = InlineResponse200542ResultData.from_dict(inline_response200542_result_data_dict)