Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1017 Bytes

File metadata and controls

32 lines (23 loc) · 1017 Bytes

Exchange

Properties

Name Type Description Notes
client_endpoint str The client's endpoint for exchange. [optional]
name str The name of the exchange. [optional]
server_endpoint str The server's endpoint for exchange. [optional]
id str

Example

from cyperf.models.exchange import Exchange

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

# convert the object into a dict
exchange_dict = exchange_instance.to_dict()
# create an instance of Exchange from a dict
exchange_from_dict = Exchange.from_dict(exchange_dict)

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