Identity for a person's identity like an author or committer
Name | Type | Description | Notes |
---|---|---|---|
str | [optional] | ||
name | str | [optional] |
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)