Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.76 KB

File metadata and controls

48 lines (39 loc) · 2.76 KB

InlineResponse200565ResultDataBefore

A object that contains the instance's information before conversion.

Properties

Name Type Description Notes
addon_config str The WordPress instance's configuration file location. [optional]
addon_name str The instance's cPAddon name. [optional]
addon_type str The instance's cPAddon type. Note: `legacy` is this only possible value. [optional]
admin_url str The 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 instance's database name. [optional]
db_prefix str The instance's database prefix. [optional]
db_server str The instance's database server network path. [optional]
db_type str The instance's database type. [optional]
db_username str The instance's database username. [optional]
domain str The 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 instance's unique ID. [optional]
initial_install_version str The instance's original installation version. [optional]
rel_path str The relative file path to the instance's document root. [optional]
site_url str The instance's URL. [optional]

Example

from clientapi_cpanel.models.inline_response200565_result_data_before import InlineResponse200565ResultDataBefore

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

# convert the object into a dict
inline_response200565_result_data_before_dict = inline_response200565_result_data_before_instance.to_dict()
# create an instance of InlineResponse200565ResultDataBefore from a dict
inline_response200565_result_data_before_from_dict = InlineResponse200565ResultDataBefore.from_dict(inline_response200565_result_data_before_dict)

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