Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.82 KB

File metadata and controls

39 lines (30 loc) · 2.82 KB

InlineResponse200544ResultData

Properties

Name Type Description Notes
available_branches List[str] A list of available local and remote branches for the cloned or existing repository. * An empty array — 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 InlineResponse200544ResultCloneUrls [optional]
deployable int Whether the system could deploy the repository. * `1` — Can deploy. * `0` — Cannot deploy. [optional]
last_deployment InlineResponse200544ResultLastDeployment [optional]
last_update InlineResponse200544ResultLastUpdate [optional]
name str The repository's display name. [optional]
repository_root str The absolute directory path in the user's `home` directory containing the repository. [optional]
source_repository InlineResponse200544ResultSourceRepository [optional]
tasks List[InlineResponse200544ResultTasks] 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` is the only possible value. [optional]

Example

from clientapi_cpanel.models.inline_response200544_result_data import InlineResponse200544ResultData

# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200544ResultData from a JSON string
inline_response200544_result_data_instance = InlineResponse200544ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200544ResultData.to_json())

# convert the object into a dict
inline_response200544_result_data_dict = inline_response200544_result_data_instance.to_dict()
# create an instance of InlineResponse200544ResultData from a dict
inline_response200544_result_data_from_dict = InlineResponse200544ResultData.from_dict(inline_response200544_result_data_dict)

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