Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1011 Bytes

File metadata and controls

32 lines (23 loc) · 1011 Bytes

Plugin

Properties

Name Type Description Notes
id str The identifier of the plugin [optional] [readonly]
keys List[str] Statistics keys supported by the plugin [optional]
name str The name of the plugin [optional]
version str The version of the plugin [optional]

Example

from cyperf.models.plugin import Plugin

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

# convert the object into a dict
plugin_dict = plugin_instance.to_dict()
# create an instance of Plugin from a dict
plugin_from_dict = Plugin.from_dict(plugin_dict)

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