Serializer for Service connection state
| Name | Type | Description | Notes |
|---|---|---|---|
| healthy | bool | [readonly] | |
| version | str | [readonly] |
from authentik_client.models.service_connection_state import ServiceConnectionState
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceConnectionState from a JSON string
service_connection_state_instance = ServiceConnectionState.from_json(json)
# print the JSON string representation of the object
print(ServiceConnectionState.to_json())
# convert the object into a dict
service_connection_state_dict = service_connection_state_instance.to_dict()
# create an instance of ServiceConnectionState from a dict
service_connection_state_from_dict = ServiceConnectionState.from_dict(service_connection_state_dict)