Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.53 KB

InlineResponse200532ResultServicesEmail.md

File metadata and controls

31 lines (22 loc) · 1.53 KB

InlineResponse200532ResultServicesEmail

An object containing the information that indicates the subaccount's email status.

Properties

Name Type Description Notes
enabled int Whether the subaccount can access Webmail, POP, and IMAP services. * `1` - Can access. * `0` - Cannot access. [optional]
quota int The maximum amount of disk space allocated to subaccount's email account. [optional]

Example

from clientapi_cpanel.models.inline_response200532_result_services_email import InlineResponse200532ResultServicesEmail

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

# convert the object into a dict
inline_response200532_result_services_email_dict = inline_response200532_result_services_email_instance.to_dict()
# create an instance of InlineResponse200532ResultServicesEmail from a dict
inline_response200532_result_services_email_from_dict = InlineResponse200532ResultServicesEmail.from_dict(inline_response200532_result_services_email_dict)

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