Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

RepoTransfer.md

File metadata and controls

32 lines (23 loc) · 1.01 KB

RepoTransfer

RepoTransfer represents a pending repo transfer

Properties

Name Type Description Notes
doer User [optional]
recipient User [optional]
teams List[Team] [optional]

Example

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)

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