| Name | Type | Description | Notes |
|---|---|---|---|
| start | SingleValue | [optional] | |
| step | SingleValue | [optional] | |
| links | List[APILink] | [optional] |
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)