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