A value object for {@link run.halo.app.core.extension.User run.halo.app.core.extension.User}.
| Name | Type | Description | Notes |
|---|---|---|---|
| avatar | str | [optional] | |
| bio | str | [optional] | |
| display_name | str | [optional] | |
| metadata | Metadata | ||
| name | str | [optional] | |
| permalink | str | [optional] |
from halo_client.models.contributor_vo import ContributorVo
# TODO update the JSON string below
json = "{}"
# create an instance of ContributorVo from a JSON string
contributor_vo_instance = ContributorVo.from_json(json)
# print the JSON string representation of the object
print(ContributorVo.to_json())
# convert the object into a dict
contributor_vo_dict = contributor_vo_instance.to_dict()
# create an instance of ContributorVo from a dict
contributor_vo_from_dict = ContributorVo.from_dict(contributor_vo_dict)