Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.22 KB

File metadata and controls

38 lines (29 loc) · 2.22 KB

InlineResponse200283ResultData

Properties

Name Type Description Notes
account str The account's name. [optional]
account_owner str The account's owner. [optional]
documentroot str The virtual host's document root. [optional]
homedir str The virtual host's home directory. [optional]
main_domain int Whether the virtual host is the primary domain. Note: * `1` - The primary domain * `0` - Not the primary domain [optional]
php_fpm int Whether FPM is enabled on the virtual host. * `1` - PHP-FPM enabled. * `0` - PHP-FPM not enabled. [optional]
php_fpm_pool_parms InlineResponse200283ResultPhpFpmPoolParms [optional]
phpversion_source List[InlineResponse200283ResultPhpversionSource] How the virtual host determines its PHP version. [optional]
version str The virtual host's PHP version. * `ea-php72` * `ea-php73` * `ea-php74` * Any custom PHP package name. [optional]
vhost str The virtual host's name. [optional]

Example

from clientapi_cpanel.models.inline_response200283_result_data import InlineResponse200283ResultData

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

# convert the object into a dict
inline_response200283_result_data_dict = inline_response200283_result_data_instance.to_dict()
# create an instance of InlineResponse200283ResultData from a dict
inline_response200283_result_data_from_dict = InlineResponse200283ResultData.from_dict(inline_response200283_result_data_dict)

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