Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 3.11 KB

File metadata and controls

47 lines (38 loc) · 3.11 KB

InlineResponse200161ResultData

Properties

Name Type Description Notes
account str The account's email address. [optional]
activesync_available int 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

from clientapi_cpanel.models.inline_response200161_result_data import InlineResponse200161ResultData

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

# convert the object into a dict
inline_response200161_result_data_dict = inline_response200161_result_data_instance.to_dict()
# create an instance of InlineResponse200161ResultData from a dict
inline_response200161_result_data_from_dict = InlineResponse200161ResultData.from_dict(inline_response200161_result_data_dict)

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