Information that indicates the account's email status.
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | int | Whether the account can access Webmail, POP, and IMAP services. * `1` - Can access. * `0` - Cannot access. | [optional] |
| quota | int | The account's email disk space quota. * The set quota megabyte (MB) limit for the account's email disk space. * `0` - Unlimited. | [optional] |
from clientapi_cpanel.models.inline_response200529_result_data_services_email import InlineResponse200529ResultDataServicesEmail
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200529ResultDataServicesEmail from a JSON string
inline_response200529_result_data_services_email_instance = InlineResponse200529ResultDataServicesEmail.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200529ResultDataServicesEmail.to_json())
# convert the object into a dict
inline_response200529_result_data_services_email_dict = inline_response200529_result_data_services_email_instance.to_dict()
# create an instance of InlineResponse200529ResultDataServicesEmail from a dict
inline_response200529_result_data_services_email_from_dict = InlineResponse200529ResultDataServicesEmail.from_dict(inline_response200529_result_data_services_email_dict)