Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

File metadata and controls

35 lines (26 loc) · 1.15 KB

ContributorVo

A value object for {@link run.halo.app.core.extension.User run.halo.app.core.extension.User}.

Properties

Name Type Description Notes
avatar str [optional]
bio str [optional]
display_name str [optional]
metadata Metadata
name str [optional]
permalink str [optional]

Example

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)

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