Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

SyncForkInfo

SyncForkInfo information about syncing a fork

Properties

Name Type Description Notes
allowed bool [optional]
base_commit str [optional]
commits_behind int [optional]
fork_commit str [optional]

Example

from openapi_client.models.sync_fork_info import SyncForkInfo

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

# convert the object into a dict
sync_fork_info_dict = sync_fork_info_instance.to_dict()
# create an instance of SyncForkInfo from a dict
sync_fork_info_from_dict = SyncForkInfo.from_dict(sync_fork_info_dict)

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