You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether the account supports ActiveSync. * `1` — Supported. * `0` — Not supported.
[optional]
activesync_host
str
The account's ActiveSync hostname. This return only appears if `activesync_available` is `1`.
[optional]
activesync_port
int
The account's ActiveSync SSL/TLS port. This return only appears if `activesync_available` is `1`.
[optional]
activesync_username
str
The account's ActiveSync username. This return only appears if `activesync_available` is `1`.
[optional]
display
str
The account's display name.
[optional]
domain
str
The account's domain name.
[optional]
from_archiving
int
Whether the account is a mail archive. * `1` — The account is a mail archive. * `0` — The account is not a mail archive.
[optional]
has_plaintext_authentication
int
Whether the account supports plaintext authentication. * `1` — Supported. * `0` — Not supported.
[optional]
inbox_host
str
The account's hostname.
[optional]
inbox_insecure_port
int
The account's insecure inbound port.
[optional]
inbox_port
int
The account's secure inbound port.
[optional]
inbox_service
str
The service type that the account uses. * `imap` * `pop`
[optional]
inbox_username
str
The account's username.
[optional]
mail_domain
str
The account's mail hostname.
[optional]
smtp_host
str
The account's outbound SMTP hostname.
[optional]
smtp_insecure_port
int
The account's insecure outbound SMTP port.
[optional]
smtp_port
int
The account's secure outbound SMTP port.
[optional]
smtp_username
str
The account's SMTP username.
[optional]
Example
fromclientapi_cpanel.models.inline_response200161_result_dataimportInlineResponse200161ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200161ResultData from a JSON stringinline_response200161_result_data_instance=InlineResponse200161ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200161ResultData.to_json())
# convert the object into a dictinline_response200161_result_data_dict=inline_response200161_result_data_instance.to_dict()
# create an instance of InlineResponse200161ResultData from a dictinline_response200161_result_data_from_dict=InlineResponse200161ResultData.from_dict(inline_response200161_result_data_dict)