StopResponse
Properties
| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| stderr |
str |
|
|
| stdout |
str |
|
|
Example
from odm_api.models.stop_response import StopResponse
# TODO update the JSON string below
json = "{}"
# create an instance of StopResponse from a JSON string
stop_response_instance = StopResponse.from_json(json)
# print the JSON string representation of the object
print(StopResponse.to_json())
# convert the object into a dict
stop_response_dict = stop_response_instance.to_dict()
# create an instance of StopResponse from a dict
stop_response_from_dict = StopResponse.from_dict(stop_response_dict)
[Back to Model list] [Back to API list] [Back to README]