| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| website | str | [optional] |
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)