Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

ServiceAccountServicesEmail

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, in megabytes (MB). [optional]

Example

from clientapi_cpanel.models.service_account_services_email import ServiceAccountServicesEmail

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

# convert the object into a dict
service_account_services_email_dict = service_account_services_email_instance.to_dict()
# create an instance of ServiceAccountServicesEmail from a dict
service_account_services_email_from_dict = ServiceAccountServicesEmail.from_dict(service_account_services_email_dict)

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