Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 998 Bytes

File metadata and controls

33 lines (24 loc) · 998 Bytes

Setting

{@link Setting Setting} is a custom extension to generate forms based on configuration.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec SettingSpec

Example

from halo_client.models.setting import Setting

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

# convert the object into a dict
setting_dict = setting_instance.to_dict()
# create an instance of Setting from a dict
setting_from_dict = Setting.from_dict(setting_dict)

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