A block entry from the clickhouse mailblocks server.
| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | date | ||
| var_from | str | ||
| message_id | str | ||
| subject | str | ||
| to | str |
from openapi_client.models.mail_block_click_house import MailBlockClickHouse
# TODO update the JSON string below
json = "{}"
# create an instance of MailBlockClickHouse from a JSON string
mail_block_click_house_instance = MailBlockClickHouse.from_json(json)
# print the JSON string representation of the object
print(MailBlockClickHouse.to_json())
# convert the object into a dict
mail_block_click_house_dict = mail_block_click_house_instance.to_dict()
# create an instance of MailBlockClickHouse from a dict
mail_block_click_house_from_dict = MailBlockClickHouse.from_dict(mail_block_click_house_dict)