Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 888 Bytes

File metadata and controls

30 lines (21 loc) · 888 Bytes

PluginAuthor

Properties

Name Type Description Notes
name str
website str [optional]

Example

from halo_client.models.plugin_author import PluginAuthor

# TODO update the JSON string below
json = "{}"
# create an instance of PluginAuthor from a JSON string
plugin_author_instance = PluginAuthor.from_json(json)
# print the JSON string representation of the object
print(PluginAuthor.to_json())

# convert the object into a dict
plugin_author_dict = plugin_author_instance.to_dict()
# create an instance of PluginAuthor from a dict
plugin_author_from_dict = PluginAuthor.from_dict(plugin_author_dict)

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