Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.48 KB

File metadata and controls

34 lines (25 loc) · 1.48 KB

SubaccountBaseIssues

Properties

Name Type Description Notes
area str The affected section of cPanel & WHM. [optional]
limit int The set quota megabyte (MB) limit for the affected subaccount. [optional]
message str The description of the issue. [optional]
service str The affected service. * `email` * `ftp` * `webdisk` [optional]
type str The type of issue. * `error` * `warning` * `info` [optional]
used int The number of megabytes (MB) that the account currently uses. [optional]

Example

from clientapi_cpanel.models.subaccount_base_issues import SubaccountBaseIssues

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

# convert the object into a dict
subaccount_base_issues_dict = subaccount_base_issues_instance.to_dict()
# create an instance of SubaccountBaseIssues from a dict
subaccount_base_issues_from_dict = SubaccountBaseIssues.from_dict(subaccount_base_issues_dict)

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