Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.07 KB

SubscriberProfileAttribs.md

File metadata and controls

31 lines (23 loc) · 1.07 KB

SubscriberProfileAttribs

Properties

Name Type Description Notes
city str [optional]
good bool [optional]
type str [optional]

Example

from listmonk.models.subscriber_profile_attribs import SubscriberProfileAttribs

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

# convert the object into a dict
subscriber_profile_attribs_dict = subscriber_profile_attribs_instance.to_dict()
# create an instance of SubscriberProfileAttribs from a dict
subscriber_profile_attribs_form_dict = subscriber_profile_attribs.from_dict(subscriber_profile_attribs_dict)

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