Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.98 KB

InlineResponse200286ResultDataPaths.md

File metadata and controls

36 lines (27 loc) · 1.98 KB

InlineResponse200286ResultDataPaths

Properties

Name Type Description Notes
account str The account's name. [optional]
documentroot str The virtual host's document root. [optional]
homedir str The home directory. [optional]
main_domain int Whether the virtual host is the account's primary domain. * `1` - Primary domain. * `0` - Not the primary domain. [optional]
path str The name of the virtual host's `php.ini` file. [optional]
type str The record's type. * `home` * `vhost` [optional]
version str The default PHP version. - `ea-php##`, where `##` represents the major and minor versions of PHP (for example, `ea-php72` represents PHP 7.2). - Any custom PHP package name. [optional]
vhost str The name of the virtual host. [optional]

Example

from clientapi_cpanel.models.inline_response200286_result_data_paths import InlineResponse200286ResultDataPaths

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

# convert the object into a dict
inline_response200286_result_data_paths_dict = inline_response200286_result_data_paths_instance.to_dict()
# create an instance of InlineResponse200286ResultDataPaths from a dict
inline_response200286_result_data_paths_from_dict = InlineResponse200286ResultDataPaths.from_dict(inline_response200286_result_data_paths_dict)

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