Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.2 KB

Subscriber.md

File metadata and controls

37 lines (29 loc) · 1.2 KB

Subscriber

Properties

Name Type Description Notes
id int [optional]
created_at str [optional]
updated_at str [optional]
uuid str [optional]
email str [optional]
name str [optional]
attribs SubscriberProfileAttribs [optional]
status str [optional]
lists List[SubscriberListsInner] [optional]

Example

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)

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