Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.52 KB

File metadata and controls

29 lines (21 loc) · 1.52 KB

ForwardingOutgoingIsEnabled

Properties

Name Type Description Notes
is_enabled object Включена ли пересылка исходящих писем. \ Если передан параметр `is_enabled`: `false`, то значение передавать нельзя [optional]
outgoing_to object Адрес для пересылки исходящих писем. \ Если передан параметр `is_enabled`: `false`, то значение передавать нельзя [optional]

Example

from timeweb_cloud_api.models.forwarding_outgoing_is_enabled import ForwardingOutgoingIsEnabled

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

# convert the object into a dict
forwarding_outgoing_is_enabled_dict = forwarding_outgoing_is_enabled_instance.to_dict()
# create an instance of ForwardingOutgoingIsEnabled from a dict
forwarding_outgoing_is_enabled_form_dict = forwarding_outgoing_is_enabled.from_dict(forwarding_outgoing_is_enabled_dict)

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