| Name |
Type |
Description |
Notes |
| success |
bool |
|
[optional] |
| error |
str |
|
[optional] |
from docspace_api_sdk.models.connection_test_result import ConnectionTestResult
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionTestResult from a JSON string
connection_test_result_instance = ConnectionTestResult.from_json(json)
# print the JSON string representation of the object
print(ConnectionTestResult.to_json())
# convert the object into a dict
connection_test_result_dict = connection_test_result_instance.to_dict()
# create an instance of ConnectionTestResult from a dict
connection_test_result_from_dict = ConnectionTestResult.from_dict(connection_test_result_dict)
[Back to Model list] [Back to API list] [Back to README]