Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.64 KB

File metadata and controls

33 lines (24 loc) · 1.64 KB

InlineResponse200359ResultData

Properties

Name Type Description Notes
database InlineResponse200359ResultDataDatabase [optional]
database_user InlineResponse200359ResultDataDatabaseUser [optional]
database_user_password str A randomly generated password intended to be maximally randomized. [optional]
hostname InlineResponse200359ResultDataHostname [optional]
port str The port to connect to from within the server to connect to the MySQL server [optional]

Example

from clientapi_cpanel.models.inline_response200359_result_data import InlineResponse200359ResultData

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

# convert the object into a dict
inline_response200359_result_data_dict = inline_response200359_result_data_instance.to_dict()
# create an instance of InlineResponse200359ResultData from a dict
inline_response200359_result_data_from_dict = InlineResponse200359ResultData.from_dict(inline_response200359_result_data_dict)

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