Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ExportAllOperation

Properties

Name Type Description Notes
config_ids List[ConfigId] An optional list of configs to be include. All are included if the list is empty. [optional]

Example

from cyperf.models.export_all_operation import ExportAllOperation

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

# convert the object into a dict
export_all_operation_dict = export_all_operation_instance.to_dict()
# create an instance of ExportAllOperation from a dict
export_all_operation_from_dict = ExportAllOperation.from_dict(export_all_operation_dict)

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