Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 849 Bytes

File metadata and controls

30 lines (21 loc) · 849 Bytes

SettingRef

Properties

Name Type Description Notes
group str
name str

Example

from halo_client.models.setting_ref import SettingRef

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

# convert the object into a dict
setting_ref_dict = setting_ref_instance.to_dict()
# create an instance of SettingRef from a dict
setting_ref_from_dict = SettingRef.from_dict(setting_ref_dict)

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