Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

FormattedDescription

Properties

Name Type Description Notes
layout LayoutConfig [optional]
sections List[Section] The list of sections that make up the page. [optional]
summary Section [optional]

Example

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)

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