Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

StatelessStream

Properties

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]

Example

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)

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