TransferRepoOption options when transfer a repository's ownership
| 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] |
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)