The subscriber to be notified
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
from halo_client.models.subscription_subscriber import SubscriptionSubscriber
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriptionSubscriber from a JSON string
subscription_subscriber_instance = SubscriptionSubscriber.from_json(json)
# print the JSON string representation of the object
print(SubscriptionSubscriber.to_json())
# convert the object into a dict
subscription_subscriber_dict = subscription_subscriber_instance.to_dict()
# create an instance of SubscriptionSubscriber from a dict
subscription_subscriber_from_dict = SubscriptionSubscriber.from_dict(subscription_subscriber_dict)