ServiceStatus¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
graph_id |
str |
||
status |
str |
||
sdk_endpoints |
[optional] |
||
start_time |
str |
[optional] |
Example¶
from graphscope.flex.rest.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)