Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

TestEventSourceConnection200Response

Properties

Name Type Description Notes
reachable bool Whether the adapter database is reachable [optional]
message str Test result message [optional]

Example

from multiflexi_client.models.test_event_source_connection200_response import TestEventSourceConnection200Response

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

# convert the object into a dict
test_event_source_connection200_response_dict = test_event_source_connection200_response_instance.to_dict()
# create an instance of TestEventSourceConnection200Response from a dict
test_event_source_connection200_response_from_dict = TestEventSourceConnection200Response.from_dict(test_event_source_connection200_response_dict)

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