StartServiceRequest¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
graph_id |
str |
[optional] |
Example¶
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_from_dict = StartServiceRequest.from_dict(start_service_request_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]