Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
created_at | str | [optional] | |
updated_at | str | [optional] | |
uuid | str | [optional] | |
str | [optional] | ||
name | str | [optional] | |
attribs | SubscriberProfileAttribs | [optional] | |
status | str | [optional] | |
lists | List[SubscriberListsInner] | [optional] |
from listmonk.models.subscriber import Subscriber
# TODO update the JSON string below
json = "{}"
# create an instance of Subscriber from a JSON string
subscriber_instance = Subscriber.from_json(json)
# print the JSON string representation of the object
print
Subscriber.to_json()
# convert the object into a dict
subscriber_dict = subscriber_instance.to_dict()
# create an instance of Subscriber from a dict
subscriber_form_dict = subscriber.from_dict(subscriber_dict)