Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 915 Bytes

File metadata and controls

31 lines (22 loc) · 915 Bytes

SettingForm

Properties

Name Type Description Notes
form_schema List[object]
group str
label str [optional]

Example

from halo_client.models.setting_form import SettingForm

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

# convert the object into a dict
setting_form_dict = setting_form_instance.to_dict()
# create an instance of SettingForm from a dict
setting_form_from_dict = SettingForm.from_dict(setting_form_dict)

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