Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2 KB

InlineResponse200372ResultData.md

File metadata and controls

36 lines (27 loc) · 2 KB

InlineResponse200372ResultData

The application’s configuration information. Note: The top-level key is the name of the application. The value is the object defined here.

Properties

Name Type Description Notes
base_uri str The URI of the application. [optional]
deployment_mode str The deployment mode of the application. * `development` — Sets the application to run in a development environment. * `production` — Sets the application to run in a production environment. [optional]
domain str The domain of the application. [optional]
enabled int Whether the application is enabled or not. * `1` — Enabled. * `0` — Disabled. [optional]
envvars object An object of the application’s environment variables and their values. [optional]
name str The name of the application. [optional]
path str The path of the application inside the user’s home directory. [optional]

Example

from clientapi_cpanel.models.inline_response200372_result_data import InlineResponse200372ResultData

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

# convert the object into a dict
inline_response200372_result_data_dict = inline_response200372_result_data_instance.to_dict()
# create an instance of InlineResponse200372ResultData from a dict
inline_response200372_result_data_from_dict = InlineResponse200372ResultData.from_dict(inline_response200372_result_data_dict)

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