Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 959 Bytes

File metadata and controls

30 lines (21 loc) · 959 Bytes

NotifierSettingRef

Properties

Name Type Description Notes
group str
name str

Example

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]