Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

NewSubscriberAttribsStack.md

File metadata and controls

29 lines (21 loc) · 1.03 KB

NewSubscriberAttribsStack

Properties

Name Type Description Notes
languages List[str] [optional]

Example

from listmonk.models.new_subscriber_attribs_stack import NewSubscriberAttribsStack

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

# convert the object into a dict
new_subscriber_attribs_stack_dict = new_subscriber_attribs_stack_instance.to_dict()
# create an instance of NewSubscriberAttribsStack from a dict
new_subscriber_attribs_stack_form_dict = new_subscriber_attribs_stack.from_dict(new_subscriber_attribs_stack_dict)

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