This object contains the features that the FTP daemon supports.
Name | Type | Description | Notes |
---|---|---|---|
login_without_domain | int | Whether the FTP daemon supports username authentication without the user's domain. * `1` – Supported. * `0` – Not supported. | [optional] |
quota | int | Whether the FTP daemon supports disk quotas. * `1` – Supported. * `0` – Not supported. | [optional] |
from clientapi_cpanel.models.inline_response200248_result_data_supports import InlineResponse200248ResultDataSupports
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200248ResultDataSupports from a JSON string
inline_response200248_result_data_supports_instance = InlineResponse200248ResultDataSupports.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200248ResultDataSupports.to_json())
# convert the object into a dict
inline_response200248_result_data_supports_dict = inline_response200248_result_data_supports_instance.to_dict()
# create an instance of InlineResponse200248ResultDataSupports from a dict
inline_response200248_result_data_supports_from_dict = InlineResponse200248ResultDataSupports.from_dict(inline_response200248_result_data_supports_dict)