Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.93 KB

File metadata and controls

34 lines (25 loc) · 1.93 KB

InlineResponse200284ResultDataDirectives

Properties

Name Type Description Notes
default_value InlineResponse200284ResultDataDirectivesDefaultValue [optional]
info str The purpose of the directive. [optional]
key str The directive's name. [optional]
php_ini_mode str The directive's PHP_INI mode. * `PHP_INI_SYSTEM` * `PHP_INI_PERDIR` * `PHP_INI_ALL` * `PHPINI_ONLY` [optional]
type str The type of value that the directive uses. * `string` * `boolean` * `integer` * `float` [optional]
value str The directive's current value. [optional]

Example

from clientapi_cpanel.models.inline_response200284_result_data_directives import InlineResponse200284ResultDataDirectives

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

# convert the object into a dict
inline_response200284_result_data_directives_dict = inline_response200284_result_data_directives_instance.to_dict()
# create an instance of InlineResponse200284ResultDataDirectives from a dict
inline_response200284_result_data_directives_from_dict = InlineResponse200284ResultDataDirectives.from_dict(inline_response200284_result_data_directives_dict)

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