Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

CustomImportHandler

Properties

Name Type Description Notes
link APILink [optional]
name str The name of the custom import config operation [optional]

Example

from cyperf.models.custom_import_handler import CustomImportHandler

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

# convert the object into a dict
custom_import_handler_dict = custom_import_handler_instance.to_dict()
# create an instance of CustomImportHandler from a dict
custom_import_handler_from_dict = CustomImportHandler.from_dict(custom_import_handler_dict)

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