ServiceStatus

Properties

Name

Type

Description

Notes

status

str

[optional]

graph

GetGraphResponse

[optional]

bolt_port

int

[optional]

hqps_port

int

[optional]

gremlin_port

int

[optional]

start_time

int

[optional]

Example

from interactive_sdk.openapi.models.service_status import ServiceStatus

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

# convert the object into a dict
service_status_dict = service_status_instance.to_dict()
# create an instance of ServiceStatus from a dict
service_status_from_dict = ServiceStatus.from_dict(service_status_dict)

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