Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.9 KB

InlineResponse200544ResultLastUpdate.md

File metadata and controls

33 lines (24 loc) · 1.9 KB

InlineResponse200544ResultLastUpdate

An object containing information about the most-recent (HEAD) commit for the current branch. Note: This object's information resembles the output of the git log -1 command. Important: * If the repository does not include any commits, the function returns a null value instead of an object. * The system may require a large amount of time to clone larger repositories. Until this process finishes, HEAD information is unavailable.

Properties

Name Type Description Notes
author str The most-recent commit's author's name and email address. [optional]
var_date int The timestamp for the most-recent commit. [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_response200544_result_last_update import InlineResponse200544ResultLastUpdate

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

# convert the object into a dict
inline_response200544_result_last_update_dict = inline_response200544_result_last_update_instance.to_dict()
# create an instance of InlineResponse200544ResultLastUpdate from a dict
inline_response200544_result_last_update_from_dict = InlineResponse200544ResultLastUpdate.from_dict(inline_response200544_result_last_update_dict)

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