StartServiceRequest¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
graph_id |
str |
[可选] |
示例¶
from gs_interactive.models.start_service_request import StartServiceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of StartServiceRequest from a JSON string
start_service_request_instance = StartServiceRequest.from_json(json)
# print the JSON string representation of the object
print StartServiceRequest.to_json()
# convert the object into a dict
start_service_request_dict = start_service_request_instance.to_dict()
# create an instance of StartServiceRequest from a dict
start_service_request_form_dict = start_service_request.from_dict(start_service_request_dict)