| Name | Type | Description | Notes |
|---|---|---|---|
| client_stream_profile | StreamProfile | [optional] | |
| direction | StreamDirection | [optional] | |
| is_flood_stream | bool | [optional] | |
| server_stream_profile | StreamProfile | [optional] | |
| links | List[APILink] | [optional] |
from cyperf.models.stateless_stream import StatelessStream
# TODO update the JSON string below
json = "{}"
# create an instance of StatelessStream from a JSON string
stateless_stream_instance = StatelessStream.from_json(json)
# print the JSON string representation of the object
print(StatelessStream.to_json())
# convert the object into a dict
stateless_stream_dict = stateless_stream_instance.to_dict()
# create an instance of StatelessStream from a dict
stateless_stream_from_dict = StatelessStream.from_dict(stateless_stream_dict)