| Name | Type | Description | Notes |
|---|---|---|---|
| available_branches | List[Optional[str]] | A list of local and remote branches available for the cloned or existing repository. * An empty array, if no branches exist. * `null` — The repository is a bare repository. | [optional] |
| branch | str | The repository's current branch. * `null` — The system has not finished the clone process for the repository, no local branches exist, or the repository is a bare repository. | [optional] |
| clone_urls | InlineResponse200545ResultDataCloneUrls | [optional] | |
| deployable | int | Whether the system could deploy the repository. * `1` — Can deploy. * `0` — Cannot deploy. | [optional] |
| last_deployment | InlineResponse200545ResultDataLastDeployment | [optional] | |
| last_update | InlineResponse200545ResultDataLastUpdate | [optional] | |
| name | str | The repository's display name. | [optional] |
| repository_root | str | The directory path that exists in the user's `home` directory containing the repository. | [optional] |
| source_repository | InlineResponse200545ResultDataSourceRepository | [optional] | |
| tasks | List[InlineResponse200545ResultDataTasks] | 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 the clone process is not finished. | [optional] |
| type | str | The repository type. * `git` — A Git repository. Note: * `git` is the only possible value. | [optional] |
from clientapi_cpanel.models.inline_response200545_result_data import InlineResponse200545ResultData
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200545ResultData from a JSON string
inline_response200545_result_data_instance = InlineResponse200545ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200545ResultData.to_json())
# convert the object into a dict
inline_response200545_result_data_dict = inline_response200545_result_data_instance.to_dict()
# create an instance of InlineResponse200545ResultData from a dict
inline_response200545_result_data_from_dict = InlineResponse200545ResultData.from_dict(inline_response200545_result_data_dict)