Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

SimpleSequenceValue

Properties

Name Type Description Notes
start SingleValue [optional]
step SingleValue [optional]
links List[APILink] [optional]

Example

from cyperf.models.simple_sequence_value import SimpleSequenceValue

# TODO update the JSON string below
json = "{}"
# create an instance of SimpleSequenceValue from a JSON string
simple_sequence_value_instance = SimpleSequenceValue.from_json(json)
# print the JSON string representation of the object
print(SimpleSequenceValue.to_json())

# convert the object into a dict
simple_sequence_value_dict = simple_sequence_value_instance.to_dict()
# create an instance of SimpleSequenceValue from a dict
simple_sequence_value_from_dict = SimpleSequenceValue.from_dict(simple_sequence_value_dict)

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