Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

NotifierDescriptorSpec

Properties

Name Type Description Notes
description str [optional]
display_name str
notifier_ext_name str
receiver_setting_ref NotifierSettingRef [optional]
sender_setting_ref NotifierSettingRef [optional]

Example

from halo_client.models.notifier_descriptor_spec import NotifierDescriptorSpec

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

# convert the object into a dict
notifier_descriptor_spec_dict = notifier_descriptor_spec_instance.to_dict()
# create an instance of NotifierDescriptorSpec from a dict
notifier_descriptor_spec_from_dict = NotifierDescriptorSpec.from_dict(notifier_descriptor_spec_dict)

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