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