| Name | Type | Description | Notes |
|---|---|---|---|
| layout | LayoutConfig | [optional] | |
| sections | List[Section] | The list of sections that make up the page. | [optional] |
| summary | Section | [optional] |
from cyperf.models.formatted_description import FormattedDescription
# TODO update the JSON string below
json = "{}"
# create an instance of FormattedDescription from a JSON string
formatted_description_instance = FormattedDescription.from_json(json)
# print the JSON string representation of the object
print(FormattedDescription.to_json())
# convert the object into a dict
formatted_description_dict = formatted_description_instance.to_dict()
# create an instance of FormattedDescription from a dict
formatted_description_from_dict = FormattedDescription.from_dict(formatted_description_dict)