Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1019 Bytes

PayloadUser.md

File metadata and controls

32 lines (23 loc) · 1019 Bytes

PayloadUser

PayloadUser represents the author or committer of a commit

Properties

Name Type Description Notes
email str [optional]
name str Full name of the commit author [optional]
username str [optional]

Example

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)

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