PayloadUser represents the author or committer of a commit
Name | Type | Description | Notes |
---|---|---|---|
str | [optional] | ||
name | str | Full name of the commit author | [optional] |
username | str | [optional] |
from clientapi_forgejo.models.payload_user import PayloadUser
# TODO update the JSON string below
json = "{}"
# create an instance of PayloadUser from a JSON string
payload_user_instance = PayloadUser.from_json(json)
# print the JSON string representation of the object
print(PayloadUser.to_json())
# convert the object into a dict
payload_user_dict = payload_user_instance.to_dict()
# create an instance of PayloadUser from a dict
payload_user_from_dict = PayloadUser.from_dict(payload_user_dict)