Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 940 Bytes

ExchangePayload.md

File metadata and controls

30 lines (21 loc) · 940 Bytes

ExchangePayload

Properties

Name Type Description Notes
c2s bytearray [optional]
s2c bytearray [optional]

Example

from cyperf.models.exchange_payload import ExchangePayload

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

# convert the object into a dict
exchange_payload_dict = exchange_payload_instance.to_dict()
# create an instance of ExchangePayload from a dict
exchange_payload_from_dict = ExchangePayload.from_dict(exchange_payload_dict)

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