Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.22 KB

File metadata and controls

35 lines (26 loc) · 1.22 KB

AppExchange

Properties

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]

Example

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)

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