Contributor from user.
| Name | Type | Description | Notes |
|---|---|---|---|
| avatar | str | [optional] | |
| display_name | str | [optional] | |
| name | str | [optional] |
from halo_client.models.contributor import Contributor
# TODO update the JSON string below
json = "{}"
# create an instance of Contributor from a JSON string
contributor_instance = Contributor.from_json(json)
# print the JSON string representation of the object
print(Contributor.to_json())
# convert the object into a dict
contributor_dict = contributor_instance.to_dict()
# create an instance of Contributor from a dict
contributor_from_dict = Contributor.from_dict(contributor_dict)