This object contains 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, in megabytes (MB), allocated to the subaccount's email account. Note: This function will not return `0` as a value. | [optional] |
from clientapi_cpanel.models.edit_user_subaccount_base_services_email import EditUserSubaccountBaseServicesEmail
# TODO update the JSON string below
json = "{}"
# create an instance of EditUserSubaccountBaseServicesEmail from a JSON string
edit_user_subaccount_base_services_email_instance = EditUserSubaccountBaseServicesEmail.from_json(json)
# print the JSON string representation of the object
print(EditUserSubaccountBaseServicesEmail.to_json())
# convert the object into a dict
edit_user_subaccount_base_services_email_dict = edit_user_subaccount_base_services_email_instance.to_dict()
# create an instance of EditUserSubaccountBaseServicesEmail from a dict
edit_user_subaccount_base_services_email_from_dict = EditUserSubaccountBaseServicesEmail.from_dict(edit_user_subaccount_base_services_email_dict)