RepoTransfer represents a pending repo transfer
Name | Type | Description | Notes |
---|---|---|---|
doer | User | [optional] | |
recipient | User | [optional] | |
teams | List[Team] | [optional] |
from clientapi_forgejo.models.repo_transfer import RepoTransfer
# TODO update the JSON string below
json = "{}"
# create an instance of RepoTransfer from a JSON string
repo_transfer_instance = RepoTransfer.from_json(json)
# print the JSON string representation of the object
print(RepoTransfer.to_json())
# convert the object into a dict
repo_transfer_dict = repo_transfer_instance.to_dict()
# create an instance of RepoTransfer from a dict
repo_transfer_from_dict = RepoTransfer.from_dict(repo_transfer_dict)