Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 946 Bytes

File metadata and controls

32 lines (23 loc) · 946 Bytes

Contributor

Contributor from user.

Properties

Name Type Description Notes
avatar str [optional]
display_name str [optional]
name str [optional]

Example

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)

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