Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 804 Bytes

File metadata and controls

30 lines (21 loc) · 804 Bytes

Author

Properties

Name Type Description Notes
name str
website str [optional]

Example

from halo_client.models.author import Author

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

# convert the object into a dict
author_dict = author_instance.to_dict()
# create an instance of Author from a dict
author_from_dict = Author.from_dict(author_dict)

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