Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 906 Bytes

Identity.md

File metadata and controls

31 lines (22 loc) · 906 Bytes

Identity

Identity for a person's identity like an author or committer

Properties

Name Type Description Notes
email str [optional]
name str [optional]

Example

from clientapi_forgejo.models.identity import Identity

# TODO update the JSON string below
json = "{}"
# create an instance of Identity from a JSON string
identity_instance = Identity.from_json(json)
# print the JSON string representation of the object
print(Identity.to_json())

# convert the object into a dict
identity_dict = identity_instance.to_dict()
# create an instance of Identity from a dict
identity_from_dict = Identity.from_dict(identity_dict)

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