Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 3.12 KB

File metadata and controls

50 lines (41 loc) · 3.12 KB

InlineResponse200565ResultDataAfter

An object that contains the instance's information after conversion.

Properties

Name Type Description Notes
addon_config str The WordPress instance's configuration file location. [optional]
addon_name str The converted instance's cPAddon name. Note: `cPanel::Blogs::WordPressX` is the only possible value. [optional]
addon_type str The converted instance's cPAddon type. Note: `modern` is the only possible value. [optional]
admin_url str The converted instance's administrator login URL. [optional]
admin_username str The instance's administrator username. [optional]
available_version str The latest WordPress version. [optional]
current_version str The WordPress instance's installed version. [optional]
db_name str The converted instance's database name. [optional]
db_prefix str The converted instance's database prefix. [optional]
db_server str The converted instance's database server network path. [optional]
db_type str The converted instance's database type. [optional]
db_username str The converted instance's database username. [optional]
domain str The converted instance's domain name. [optional]
full_path str The instance's full installation path. [optional]
homedir str The cPanel account's home directory. [optional]
id str The converted instance's unique ID. [optional]
initial_install_version str The instance's original installation version. [optional]
migrated_from str The instance's original installation cPAddon name. [optional]
migrated_on int The time the system converted the instance. [optional]
rel_path str The relative file path to the converted instance's document root. [optional]
site_url str The converted instance's URL. [optional]

Example

from clientapi_cpanel.models.inline_response200565_result_data_after import InlineResponse200565ResultDataAfter

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

# convert the object into a dict
inline_response200565_result_data_after_dict = inline_response200565_result_data_after_instance.to_dict()
# create an instance of InlineResponse200565ResultDataAfter from a dict
inline_response200565_result_data_after_from_dict = InlineResponse200565ResultDataAfter.from_dict(inline_response200565_result_data_after_dict)

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