Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.03 KB

File metadata and controls

30 lines (22 loc) · 1.03 KB

DomainInfo

Почтовая информация о домене

Properties

Name Type Description Notes
email object Адрес для сбора почты с ошибочных ящиков
used object Использованное место на почте (в Мб).

Example

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)

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