| Name | Type | Description | Notes |
|---|---|---|---|
| group | str | ||
| name | str |
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)