Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.62 KB

InlineResponse200287ResultMetadataLangPHP.md

File metadata and controls

33 lines (24 loc) · 1.62 KB

InlineResponse200287ResultMetadataLangPHP

An object containing the virtual host's PHP directive information.

Properties

Name Type Description Notes
path str The absolute file path to the `php.ini` file. [optional]
phpversion str The virtual host's installed version of PHP. [optional]
type str The type of `php.ini` file. * `home` * `vhost` [optional]
vhost str The virtual host's name. [optional]

Example

from clientapi_cpanel.models.inline_response200287_result_metadata_lang_php import InlineResponse200287ResultMetadataLangPHP

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

# convert the object into a dict
inline_response200287_result_metadata_lang_php_dict = inline_response200287_result_metadata_lang_php_instance.to_dict()
# create an instance of InlineResponse200287ResultMetadataLangPHP from a dict
inline_response200287_result_metadata_lang_php_from_dict = InlineResponse200287ResultMetadataLangPHP.from_dict(inline_response200287_result_metadata_lang_php_dict)

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