Почтовая информация о домене
| Name | Type | Description | Notes |
|---|---|---|---|
| object | Адрес для сбора почты с ошибочных ящиков | ||
| used | object | Использованное место на почте (в Мб). |
from timeweb_cloud_api.models.domain_info import DomainInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DomainInfo from a JSON string
domain_info_instance = DomainInfo.from_json(json)
# print the JSON string representation of the object
print DomainInfo.to_json()
# convert the object into a dict
domain_info_dict = domain_info_instance.to_dict()
# create an instance of DomainInfo from a dict
domain_info_form_dict = domain_info.from_dict(domain_info_dict)