Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.17 KB

File metadata and controls

36 lines (27 loc) · 1.17 KB

EmailCategory

Properties

Name Type Description Notes
childs List[EmailCategoryChild] [optional]
description str [optional]
display_name str [optional]
icon str [optional]
opted_in bool [optional]
position int [optional]
required bool [optional]
slug str [optional]

Example

from hyperstack.models.email_category import EmailCategory

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

# convert the object into a dict
email_category_dict = email_category_instance.to_dict()
# create an instance of EmailCategory from a dict
email_category_from_dict = EmailCategory.from_dict(email_category_dict)

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