Information about 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, in megabytes (MB), allocated to subaccount's email account. | [optional] |
from clientapi_cpanel.models.subaccount_base_services_email import SubaccountBaseServicesEmail
# TODO update the JSON string below
json = "{}"
# create an instance of SubaccountBaseServicesEmail from a JSON string
subaccount_base_services_email_instance = SubaccountBaseServicesEmail.from_json(json)
# print the JSON string representation of the object
print(SubaccountBaseServicesEmail.to_json())
# convert the object into a dict
subaccount_base_services_email_dict = subaccount_base_services_email_instance.to_dict()
# create an instance of SubaccountBaseServicesEmail from a dict
subaccount_base_services_email_from_dict = SubaccountBaseServicesEmail.from_dict(subaccount_base_services_email_dict)