The single sequence or list of sequences used to stop generation
| Name | Type | Description | Notes |
|---|
from cms_client.models.stop import Stop
# TODO update the JSON string below
json = "{}"
# create an instance of Stop from a JSON string
stop_instance = Stop.from_json(json)
# print the JSON string representation of the object
print(Stop.to_json())
# convert the object into a dict
stop_dict = stop_instance.to_dict()
# create an instance of Stop from a dict
stop_from_dict = Stop.from_dict(stop_dict)