| Name | Type | Description | Notes |
|---|---|---|---|
| auto_generate | bool | [default to True] | |
| raw | str | [optional] |
from halo_client.models.excerpt import Excerpt
# TODO update the JSON string below
json = "{}"
# create an instance of Excerpt from a JSON string
excerpt_instance = Excerpt.from_json(json)
# print the JSON string representation of the object
print(Excerpt.to_json())
# convert the object into a dict
excerpt_dict = excerpt_instance.to_dict()
# create an instance of Excerpt from a dict
excerpt_from_dict = Excerpt.from_dict(excerpt_dict)