Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 840 Bytes

File metadata and controls

30 lines (21 loc) · 840 Bytes

Excerpt

Properties

Name Type Description Notes
auto_generate bool [default to True]
raw str [optional]

Example

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)

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