Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 4.39 KB

InlineResponse200567ResultData.md

File metadata and controls

54 lines (45 loc) · 4.39 KB

InlineResponse200567ResultData

Properties

Name Type Description Notes
addon_config str The WordPress instance's configureation absolute file path location. [optional]
addon_name str The WordPress cPAddon used to install the instance. * `cPanel::Blogs::WordPress` * `cPanel::Blogs::WordPressX` * `cPanel::Blogs::WordPressUnmanaged` [optional]
addon_type str The WordPress instance's installation method. * `modern` — Installed by RPM-managed WordPress cPAddon. * `legacy` — Installed by legacy cPAddon. * `unmanaged` — Installed by third-party tool or the WordPress installer. [optional]
admin_url str The URL to the instance's administration interface. [optional]
admin_username str The administrator username configured at the time of installation. [optional]
admins List[InlineResponse200567ResultDataAdmins] A list of the WordPress instance's administrators. [optional]
autoupdate bool Whether the user enabled automatic updates. * `true` — Enabled. * `false` — Disabled. [optional]
autoupdate_core_has_filter bool Whether one of more filters modify the core autoupdate settings. * `true` — Filter(s) applied. * `false` — No filters applied. Note Typically, plugins apply filters to the autoupdate settings. [optional]
autoupdate_core_major bool Whether the user enabled automatic updates for major releases. * `true` — Enabled. * `false` — Disabled. [optional]
autoupdate_core_minor bool Whether the user enabled automatic updates for minor releases. * `true` — Enabled. * `false` — Disabled. [optional]
available_version str The lastest WordPress instance's version. [optional]
created_on int The WordPress instance's installation date. [optional]
current_version str The WordPress instance's version. [optional]
db_name str A database name. [optional]
db_prefix str A database table prefix. [optional]
db_server str The WordPress instance's database server hostname. [optional]
db_type str The WordPress instance's database type. [optional]
db_username str The WordPress instance's database username. [optional]
domain str The WordPress instance's installation domain. [optional]
full_path str The WordPress instance's full installation absolute filepath. [optional]
homedir str The cPanel account's home directory. [optional]
id str The WordPress instance's unique identifier. [optional]
initial_install_version str The WordPress instance's version at installation. [optional]
recent int Whether the system added the WordPress instance in the last 24 hours. * `1` — Added recently. * `0` — Added previously. [optional]
rel_path str The WordPress instance's installation path, relative to the damin's document root. Note: This function returns an empty value if the relative path is the document root. [optional]
site_url str The WordPress instance's home page URL. [optional]

Example

from clientapi_cpanel.models.inline_response200567_result_data import InlineResponse200567ResultData

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

# convert the object into a dict
inline_response200567_result_data_dict = inline_response200567_result_data_instance.to_dict()
# create an instance of InlineResponse200567ResultData from a dict
inline_response200567_result_data_from_dict = InlineResponse200567ResultData.from_dict(inline_response200567_result_data_dict)

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