An object containing the information that indicates the subaccount's email status.
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] |
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)