Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.8 KB

InlineResponse200527ResultDataAccountsIssues.md

File metadata and controls

34 lines (25 loc) · 1.8 KB

InlineResponse200527ResultDataAccountsIssues

Properties

Name Type Description Notes
area str The affected section of cPanel & WHM. [optional]
limit int The set megabyte (MB) quota limit for the affected Subaccount. [optional]
message str A 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) the account currently uses. [optional]

Example

from clientapi_cpanel.models.inline_response200527_result_data_accounts_issues import InlineResponse200527ResultDataAccountsIssues

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

# convert the object into a dict
inline_response200527_result_data_accounts_issues_dict = inline_response200527_result_data_accounts_issues_instance.to_dict()
# create an instance of InlineResponse200527ResultDataAccountsIssues from a dict
inline_response200527_result_data_accounts_issues_from_dict = InlineResponse200527ResultDataAccountsIssues.from_dict(inline_response200527_result_data_accounts_issues_dict)

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