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