Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.76 KB

File metadata and controls

34 lines (25 loc) · 1.76 KB

InlineResponse200548ResultRepositoryState

An object containing information about the repository's state at the time of deployment.

Properties

Name Type Description Notes
author str The most-recent commit's author's name and email address as they exist in the user's Git configuration files. [optional]
branch str The repository's current branch. [optional]
var_date int The timestamp for the most-recent commit, in Unix time format. [optional]
identifier str The identifier (SHA-1 value) for the most-recent commit. [optional]
message str The commit message. [optional]

Example

from clientapi_cpanel.models.inline_response200548_result_repository_state import InlineResponse200548ResultRepositoryState

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

# convert the object into a dict
inline_response200548_result_repository_state_dict = inline_response200548_result_repository_state_instance.to_dict()
# create an instance of InlineResponse200548ResultRepositoryState from a dict
inline_response200548_result_repository_state_from_dict = InlineResponse200548ResultRepositoryState.from_dict(inline_response200548_result_repository_state_dict)

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