| Name |
Type |
Description |
Notes |
| group |
str |
|
|
| name |
str |
|
|
from halo_client.models.notifier_setting_ref import NotifierSettingRef
# TODO update the JSON string below
json = "{}"
# create an instance of NotifierSettingRef from a JSON string
notifier_setting_ref_instance = NotifierSettingRef.from_json(json)
# print the JSON string representation of the object
print(NotifierSettingRef.to_json())
# convert the object into a dict
notifier_setting_ref_dict = notifier_setting_ref_instance.to_dict()
# create an instance of NotifierSettingRef from a dict
notifier_setting_ref_from_dict = NotifierSettingRef.from_dict(notifier_setting_ref_dict)
[Back to Model list] [Back to API list] [Back to README]