Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 5.12 KB

InlineResponse200191ResultData.md

File metadata and controls

48 lines (39 loc) · 5.12 KB

InlineResponse200191ResultData

Properties

Name Type Description Notes
diskquota int The disk quota. * A positive value that represents the disk quota, in bytes. * `0` - The account possesses an unlimited disk quota. [optional]
diskused int The disk space that the email account uses. * A positive value that represents the used disk space, in bytes. * `0` - The account possesses an unlimited disk quota. [optional]
diskquota InlineResponse200191ResultDataDiskquota [optional]
diskused int The disk space that the email account uses. * A positive floating-point value that represents the used disk space, in megabytes (MB). * `0` - The account possesses an unlimited disk quota. [optional]
diskusedpercent int The percentage of disk space that the email account uses. * A positive value. * `0` - The account has an unlimited disk quota. [optional]
diskusedpercent20 int The percentage of disk space that the email account uses. * A positive value. * `0` - The account possesses an unlimited disk quota. [optional]
diskusedpercent_float float The floating-point value from which the function derives the `diskusedpercent` return. * A floating-point value. * `0` - Unlimited or disabled disk quota. Note: The `diskusedpercent_float` number can contain scientific notation values. For example, `1.20494365692139e-05`. [optional]
domain str The email account's domain. For example, `example.com` if the email address is `[email protected]`. [optional]
email InlineResponse200191ResultDataEmail [optional]
has_suspended int Whether the email account possesses one of the following suspension parameters: `suspended_login` `suspended_incoming` `suspended_outgoing` `hold_outgoing` * `1` - The email account has a suspension. * `0` - The email account does not have a suspension. Note: The function only returns this value if you pass the `get_restrictions=1` parameter. [optional]
hold_outgoing int Whether the email account's outgoing email is held in Exim's queue. * `1` - Outgoing email is held in Exim's queue. * `0` - Outgoing email is not held in Exim's queue. Note: The function only returns this value if you pass the `get_restrictions=1` parameter. [optional]
humandiskquota InlineResponse200191ResultDataHumandiskquota [optional]
humandiskused str The disk space that the email account uses, in human-readable format. * The disk space that the email account uses, a non-breaking space (`\u00a0`), and the unit of measure. * `None` - The account possesses an unlimited disk quota. [optional]
login InlineResponse200191ResultDataLogin [optional]
mtime int The email account's last modification time, in Unix time format. [optional]
suspended_incoming int Whether the email account's incoming email is suspended. * `1` - Suspended. * `0` - Not suspended. [optional]
suspended_login int Whether the user's ability to log in to, send mail from, and read their email account is suspended. * `1` - Suspended. * `0` - Not suspended. [optional]
suspended_outgoing int Whether the email account's outgoing email is suspended. * `1` - Suspended. * `0` - Not suspended. [optional]
txtdiskquota InlineResponse200191ResultDataTxtdiskquota [optional]
user str The email account username. For example, `user` if the email address is `[email protected]`. [optional]

Example

from clientapi_cpanel.models.inline_response200191_result_data import InlineResponse200191ResultData

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

# convert the object into a dict
inline_response200191_result_data_dict = inline_response200191_result_data_instance.to_dict()
# create an instance of InlineResponse200191ResultData from a dict
inline_response200191_result_data_from_dict = InlineResponse200191ResultData.from_dict(inline_response200191_result_data_dict)

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