Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1018 Bytes

File metadata and controls

28 lines (20 loc) · 1018 Bytes

OutgoingIsDisabled

Properties

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

Example

from timeweb_cloud_api.models.outgoing_is_disabled import OutgoingIsDisabled

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

# convert the object into a dict
outgoing_is_disabled_dict = outgoing_is_disabled_instance.to_dict()
# create an instance of OutgoingIsDisabled from a dict
outgoing_is_disabled_form_dict = outgoing_is_disabled.from_dict(outgoing_is_disabled_dict)

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