Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

UpdateBranchRepoOption

UpdateBranchRepoOption options when updating a branch in a repository

Properties

Name Type Description Notes
name str New branch name

Example

from clientapi_forgejo.models.update_branch_repo_option import UpdateBranchRepoOption

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

# convert the object into a dict
update_branch_repo_option_dict = update_branch_repo_option_instance.to_dict()
# create an instance of UpdateBranchRepoOption from a dict
update_branch_repo_option_from_dict = UpdateBranchRepoOption.from_dict(update_branch_repo_option_dict)

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