CreateProcedureResponse¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
procedure_id |
str |
Example¶
from gs_interactive.models.create_procedure_response import CreateProcedureResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateProcedureResponse from a JSON string
create_procedure_response_instance = CreateProcedureResponse.from_json(json)
# print the JSON string representation of the object
print(CreateProcedureResponse.to_json())
# convert the object into a dict
create_procedure_response_dict = create_procedure_response_instance.to_dict()
# create an instance of CreateProcedureResponse from a dict
create_procedure_response_from_dict = CreateProcedureResponse.from_dict(create_procedure_response_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]