Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 928 Bytes

File metadata and controls

29 lines (20 loc) · 928 Bytes

IngestOperation

Properties

Name Type Description Notes
plugin_stats PluginStats [optional]

Example

from cyperf.models.ingest_operation import IngestOperation

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

# convert the object into a dict
ingest_operation_dict = ingest_operation_instance.to_dict()
# create an instance of IngestOperation from a dict
ingest_operation_from_dict = IngestOperation.from_dict(ingest_operation_dict)

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