Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 799 Bytes

File metadata and controls

29 lines (20 loc) · 799 Bytes

Stop1

The single sequence or the list of sequences used to stop the generation

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]