| Name |
Type |
Description |
Notes |
| is_enabled |
object |
Включен ли автоответчик на входящие письма |
|
| autoreply_message |
object |
Сообщение автоответчика на входящие письма. \ Если передан параметр `is_enabled`: `false`, то значение передавать нельзя |
[optional] |
| autoreply_subject |
object |
Тема сообщения автоответчика на входящие письма. \ Если передан параметр `is_enabled`: `false`, то значение передавать нельзя |
[optional] |
from timeweb_cloud_api.models.autoreply_is_enabled import AutoreplyIsEnabled
# TODO update the JSON string below
json = "{}"
# create an instance of AutoreplyIsEnabled from a JSON string
autoreply_is_enabled_instance = AutoreplyIsEnabled.from_json(json)
# print the JSON string representation of the object
print AutoreplyIsEnabled.to_json()
# convert the object into a dict
autoreply_is_enabled_dict = autoreply_is_enabled_instance.to_dict()
# create an instance of AutoreplyIsEnabled from a dict
autoreply_is_enabled_form_dict = autoreply_is_enabled.from_dict(autoreply_is_enabled_dict)
[Back to Model list] [Back to API list] [Back to README]