Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1009 Bytes

File metadata and controls

30 lines (21 loc) · 1009 Bytes

SubscriptionSubscriber

The subscriber to be notified

Properties

Name Type Description Notes
name str

Example

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)

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