| Name | Type | Description | Notes |
|---|---|---|---|
| c2s_payload | GenericFile | [optional] | |
| http_req_meta | HTTPReqMeta | [optional] | |
| http_res_meta | HTTPResMeta | [optional] | |
| id | str | [optional] [readonly] | |
| name | str | [optional] [readonly] | |
| payload | ExchangePayload | [optional] | |
| s2c_payload | GenericFile | [optional] |
from cyperf.models.app_exchange import AppExchange
# TODO update the JSON string below
json = "{}"
# create an instance of AppExchange from a JSON string
app_exchange_instance = AppExchange.from_json(json)
# print the JSON string representation of the object
print(AppExchange.to_json())
# convert the object into a dict
app_exchange_dict = app_exchange_instance.to_dict()
# create an instance of AppExchange from a dict
app_exchange_from_dict = AppExchange.from_dict(app_exchange_dict)