Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

File metadata and controls

28 lines (20 loc) · 1.02 KB

AutoreplyIsDisabled

Properties

Name Type Description Notes
is_enabled object Включен ли автоответчик на входящие письма

Example

from timeweb_cloud_api.models.autoreply_is_disabled import AutoreplyIsDisabled

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

# convert the object into a dict
autoreply_is_disabled_dict = autoreply_is_disabled_instance.to_dict()
# create an instance of AutoreplyIsDisabled from a dict
autoreply_is_disabled_form_dict = autoreply_is_disabled.from_dict(autoreply_is_disabled_dict)

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