Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 899 Bytes

File metadata and controls

29 lines (20 loc) · 899 Bytes

LayoutConfig

Properties

Name Type Description Notes
columns int The number of columns in the layout grid. [optional]

Example

from cyperf.models.layout_config import LayoutConfig

# TODO update the JSON string below
json = "{}"
# create an instance of LayoutConfig from a JSON string
layout_config_instance = LayoutConfig.from_json(json)
# print the JSON string representation of the object
print(LayoutConfig.to_json())

# convert the object into a dict
layout_config_dict = layout_config_instance.to_dict()
# create an instance of LayoutConfig from a dict
layout_config_from_dict = LayoutConfig.from_dict(layout_config_dict)

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