Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

TransferRepoOption

TransferRepoOption options when transfer a repository's ownership

Properties

Name Type Description Notes
new_owner str
team_ids List[int] ID of the team or teams to add to the repository. Teams can only be added to organization-owned repositories. [optional]

Example

from openapi_client.models.transfer_repo_option import TransferRepoOption

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

# convert the object into a dict
transfer_repo_option_dict = transfer_repo_option_instance.to_dict()
# create an instance of TransferRepoOption from a dict
transfer_repo_option_from_dict = TransferRepoOption.from_dict(transfer_repo_option_dict)

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